SelectNext(
ActiveControl as TWinControl,
True,
True );
VB5 keeps asking for "List seperator or )"
What is wrong?
Printable View
SelectNext(
ActiveControl as TWinControl,
True,
True );
VB5 keeps asking for "List seperator or )"
What is wrong?
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