|
-
Feb 9th, 2000, 06:07 PM
#1
Thread Starter
Addicted Member
SelectNext(
ActiveControl as TWinControl,
True,
True );
VB5 keeps asking for "List seperator or )"
What is wrong?
-
Feb 9th, 2000, 11:33 PM
#2
You have to declare the variable first (you can't do it like in C/C++). Also, don't include semicolon at the end.
Code:
Dim ActiveControl as TWinControl
SelectNext(ActiveControl, True, True )
------------------
Serge
Senior Programmer Analyst
[email protected]
[email protected]
ICQ#: 51055819
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|