Posts
 
Reputation
Joined
Last Seen
Ranked #552
Strength to Increase Rep
+7
Strength to Decrease Rep
-1
87% Quality Score
Upvotes Received
61
Posts with Upvotes
54
Upvoting Members
33
Downvotes Received
8
Posts with Downvotes
8
Downvoting Members
6
12 Commented Posts
~143.95K People Reached
Interests
software , gaming, board sports
Favorite Tags
Member Avatar for Ancient Dragon

a woman asks her husband to go to the grocery store, her instructions are : -buy milk -if there are eggs, buy six suprisingly she got mad when he got home with 6 bottles of milk!

Member Avatar for jkon
4
4K
Member Avatar for archie.herbias

alright well i am definitly not gonna give you any code as it is for a school project, but ill help you with the general idea and then you can come back with some actual work to get further help. first off, you do not want to create a forum …

Member Avatar for angela_8
0
2K
Member Avatar for AssertNull

Indeed, the standard way of saving passwords is to first salt and then hash them, saving only the hash. In the login process, re-salt the entered password, hash that, and compare with the saved hash. Worth mentioning that MD5 which is a commonly used hash algorithm [might not be the …

Member Avatar for AssertNull
0
276
Member Avatar for Suzie999

Really not my strong suit but I would try dumbing down the dllimport see if it works with the bare minimum. So, removing the entrypoint since you arent renaming it anyways, not specifying the char set, or using `CharSet = CharSet.Auto`. The wrapper I am using for PCSC communication with …

Member Avatar for Suzie999
0
383
Member Avatar for cusoon.777

Have you checked to see if there was any data available in your dictionary after your database query? Also for the autocomplete read [this article from msdn](https://msdn.microsoft.com/en-us/library/system.windows.forms.textbox.autocompletemode(v=vs.110).aspx) or [this stackoverflow thread](http://stackoverflow.com/questions/1357853/autocomplete-textbox-control), which were google's top results when searching "c# autocomplete on textbox"

Member Avatar for Philippe.Lahaie
0
358
Member Avatar for Robin_7

[Wikipedia #1](https://en.wikipedia.org/wiki/Bread_crumbs) [Wikipedia #2](https://en.wikipedia.org/wiki/Breadcrumb_(navigation)) Since I'm guessing you are refering to #2, you might wanna read [this](https://msdn.microsoft.com/en-us/library/microsoft.windowsserversolutions.web.controls.breadcrumb.aspx) ;)

Member Avatar for almostbob
0
232
Member Avatar for OMER AHMED

[Old post](https://www.daniweb.com/programming/web-development/threads/422131/restrict-size-of-file-upload#post1801680), probably not the only one but here is one i answered years ago. Example is C# but I'm sure you will figure it out ;)

Member Avatar for Minimalist
0
394
Member Avatar for JamesCherrill

here are a few projects i really enjoyed doing on my own time during college : **mine sweeper**. (i even added a delay on the empty tile discovery so that you could see the path the algorithm would take :D ) **perfect maze**. (this was actually an assignement) the program …

Member Avatar for Alok_5
20
3K
Member Avatar for silent.saqi

then the column "photo" in row 1 of your datatable does not contain any data, its set to null, to secure your code against such exceptions, test it before trying to convert... something like : [CODE] if(dt.Rows[1]["photo"] != System.DBNull){ bytes = (byte[])dt.Rows[1]["photo"]; } [/CODE] won't make your picture appear but …

Member Avatar for myaccount
0
8K
Member Avatar for joemathew

[HTML(HyperText Markup Language)](http://en.wikipedia.org/wiki/HTML) is a markup language, it is used to organize the contents of a web page. [CSS(Cascading Style Sheets)](http://en.wikipedia.org/wiki/Cascading_Style_Sheets) is a set of rules that define visual display for the *tags* in a markup language. So basicly, you write a webpage in HTML and put content inside tags. …

Member Avatar for webhawk
0
424
Member Avatar for Mr.M

have you traced the value of the session variable? is it correctly being set? have you considered having default.aspx use a different master page with no buttons? otherwise you should be able to [reference master page content](http://msdn.microsoft.com/en-us/library/xxwa0ff0.aspx) with the object named "Master"

Member Avatar for Mr.M
0
414
Member Avatar for nabilmahesaniya

if i understand your question correctly, you are wondering when to use the private/public keywords, when to use void as a return type and when to use the static keyword when declaring functions. so lets break that down; [public/private](http://docs.oracle.com/javase/tutorial/java/javaOO/accesscontrol.html) simply decides who gets to call the function you are writing. …

Member Avatar for Philippe.Lahaie
0
153
Member Avatar for happygeek

it's fun that everybody claims they want to be green, but anywhere a wind turbine project is suggested, people in the surroundings contest it... *sigh* Ps: > it should doing all it can *be* :P

Member Avatar for Ginetta23
0
620
Member Avatar for Raouldukey

i am not aware of any standard libraries that play sounds and if i recall right the last time i did something simillar was for a school project and i ended up including a free third-party library i found online and used it to play some wav files. worked fine …

Member Avatar for Philippe.Lahaie
0
250
Member Avatar for ethan.david.376

i dont think it is impossible to do, you would probably need to recreate a custom JInternalFrame class and that might be too complex for what you are trying to achieve! ;) good luck!

Member Avatar for Philippe.Lahaie
0
101
Member Avatar for munchlaxxx

with a linked list the only game that comes to mind is **snake** at this time! not that it cant be done without it , but i just dont see other games ive reproduced working well with linked lists (minesweeper, tictactoe etc...)

Member Avatar for Philippe.Lahaie
0
82
Member Avatar for KushMishra

I would explore the avenue where you design a user control for items, where you add a grid and bind the 5 string columns. and then add and bind 5 of these itemUserControl in your main control's datagrid. There might be constraints with grids in datagrids never tried it but …

Member Avatar for KushMishra
0
338
Member Avatar for Gen_2

what is the error message you get and on which line does it happen? also : If CheckBox2.Checked = True Then 'nothing ElseIf CheckBox2.Checked = False Then aspouse() End If 'is the same as : If Not CheckBox2.Cheked Then aspouse() End If

Member Avatar for Gen_2
0
434
Member Avatar for Shray_1

have you done anything so far?? we do not complete assignements, we help you with problems you encounter while working on them yourself! looking foward to see code from you :)

Member Avatar for Philippe.Lahaie
0
199
Member Avatar for Dani

ah shame it doesnt go back further than 3 months, couldve been fun to make a timed heat map of all the posts since launch!! :P

Member Avatar for Mike_danvers
4
3K
Member Avatar for <M/>
Member Avatar for sam.escott4

If you want to split on specific characters then look up the [split](http://www.dotnetperls.com/split-vbnet) function. If you want to split the string after reaching a certain ammount of characters then you should try getting familiar with [loops](http://msdn.microsoft.com/en-us/library/ezk76t25.aspx) and the [substring](http://www.dotnetperls.com/substring-vbnet) function.

Member Avatar for Mr.M
0
209
Member Avatar for Sockoiid
Member Avatar for jwenting
2
315
Member Avatar for kedxu
Member Avatar for kedxu
0
177
Member Avatar for dendenny01

for loops execute the code between "for" and "next" until the condition next to the for statement is reached , so the first loop for example : For I = 1 to 4 , will loop 4 times, the first time arround, I will equal 1 , the second time …

Member Avatar for gian88r
0
163
Member Avatar for ScarWars9
Member Avatar for jontennyeah

All your threads are about listviews and stuff, they are all very unclear and none show some work done. Nobody should give you code until you provide proof that you have given this problem a genuine try. You are not getting better, hell you get spoon fed answers and when …

Member Avatar for jontennyeah
-1
141
Member Avatar for EliteNMC

are the values gonna be constant like in your example? you pretty much have the code down. id probly use an IIf but your way would work to. save the values in constant variables if they are the two values that you are always gonna switch between.

Member Avatar for tinstaafl
0
193
Member Avatar for pandeter

[loops](http://en.wikibooks.org/wiki/Visual_Basic_.NET/Loop_statements) [if/else](http://en.wikibooks.org/wiki/Visual_Basic_.NET/Branch_statements) [dates](http://msdn.microsoft.com/en-us/library/bb546099.aspx) even without google, just using the text box on this page : [1](http://www.daniweb.com/software-development/vbnet/threads/323752/compare-dates#post1387744) [2](http://www.daniweb.com/software-development/vbnet/threads/432047/date-comparison) [3](http://www.daniweb.com/software-development/vbnet/threads/357007/compare-current-date-with-one-in-ms-access-db) [4](http://www.daniweb.com/software-development/vbnet/threads/383279/how-to-compare-two-date-values-in-two-different-columns-of-a-table) [5](http://www.daniweb.com/software-development/vbnet/threads/272271/comparing-datetimes-find-the-closest-to-system-time) [6](http://www.daniweb.com/software-development/vbnet/threads/414860/date-compare) that was just from first page too... this reminds me a lot of [this thread](http://www.daniweb.com/software-development/vbnet/threads/445938/how-to-compute-working-hours) lol

Member Avatar for tinstaafl
0
301
Member Avatar for chriswelborn

i think you can edit for 3 hours after the original posted time. as for the display bug i can't help you, i did do some edits today though. Using windows 7 and chrome. Worked fine for me.

Member Avatar for Dani
0
841