Computer Problems? Computing.Net has over 1,000,000 posts about all things technology related! Over 90% answered within 24 hours! Click here to start participating now! Also, be sure to check out the New User Guide.
inserting integers in VB
Name: sunny Date: October 10, 2004 at 01:03:10 Pacific OS: xp CPU/Ram: 256
Comment:
thank U SN. it is workning.. i have another problem .. iam getting errors when inserting integers pls tell me how to insert into sql database through VB.. insert into .. values("+i+") here i is an int .. this syntax dosent work..
Summary: Its a weird beast is the VB Error Handler and it doesnt always work the way you expect. Unfortunatley, as written the ExceptionHandler will never get called. Putting On Error Resume Next at the begin...
Summary: Context menus were never VB5/6's strong point, but it's not difficult. What throws people off, is that the menu still has to be created with the Menu Editor, which one thinks of as only making menu-ba...
Summary: rs2.Open "insert into online(username, online, index) values ('" + user + "', '" + yes + "', '" + index + "')", conn This statement gives me a type mismatch all the '" + values + "' have a value in t...