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.
Command counting in VB!
Name: Berty Date: December 3, 2002 at 06:52:04 Pacific OS: Xp Pro CPU/Ram: 1.1 Gig 256 DDR
Comment:
Hi guys, An easy VB question for all you pros!!! Can anyone tell me if the number of times a command button is 'clicked' can be counted.
Summary: I am facing a problem. I have put a command button in VB.Net Form(Windows Application) and its caption is &Clear. But whenever I press 'C'(without Alt) the event is firing. I have datagrid in that ...
Summary: Can someone please help me with my update command in VB.NET I have an access database and i am able to add records and read from it but i cant modify existing records. My test table just hase Name, Nu...
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(); ...