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.
Cursors in VB
Name: NIRAV Date: March 24, 2003 at 11:38:17 Pacific OS: win98 CPU/Ram: p3
Comment:
Hi, i need use Cursors in MS Access... i believe i need to write the code in MODULES which is a Visual Basic Editor. But dunno how to write Cursors... i know for cursors one need to to declare,open, fetch and close cursors in PL/SQL. but wat about in Visual Basic. I searched GOOGLE but didnt find any useful information. i appreciate if u guys help me out. it wud be nice if u provide some example. Thank you
Summary: Has anyone tried to create and use their own color cursor in VB.NET? If you have VB.NET could you try it and tell me if it changes to Monochrome? Thanks. cursor.current=new cursor("CursorName.cur") ...
Summary: I think you mean Select Case...it is VB's equivalent to C/C++'s switch statement. IN C/C++ switch(aValue) { case 0: DoSomething(); break; case 1: DoSomethingElse(); ...