Hi all
I would like to add these things to the wishlist.
1.) Stop the compiler from complaining over this valid code:
2.) A built-in " #IDE_DEBUG PRINT statement
It would be really nice to have an option to debug print to a window in the IDE. (Without using the debugger)
The functionality could be turned on/off by a "#ENABLE IDE_DEBUG" option.
Maybe the output could be redirected to a file, for those using another IDE.
And maybe:
3.) Syntax highligting of "Declared" Subs and Functions, such as the windows API and other includes.
As this might influence the speed of the Editor, there could be an option to turn it off and on.
--
Best Regards
Peter Scheutz
------------------
[This message has been edited by Peter Scheutz (edited January 17, 2001).]
I would like to add these things to the wishlist.
1.) Stop the compiler from complaining over this valid code:
Code:
Sub DotheRedim( a() As Long) ReDim a(10) End Sub Sub TestRedim() Local myArray() As Long ' redim myArray () ' this is needed to stop the compiler from complaining ' alerting that myArray has not been dimensioned. DotheRedim myArray() MsgBox Str$(myArray(3)) End Sub
It would be really nice to have an option to debug print to a window in the IDE. (Without using the debugger)
The functionality could be turned on/off by a "#ENABLE IDE_DEBUG" option.
Maybe the output could be redirected to a file, for those using another IDE.
And maybe:
3.) Syntax highligting of "Declared" Subs and Functions, such as the windows API and other includes.
As this might influence the speed of the Editor, there could be an option to turn it off and on.
--
Best Regards
Peter Scheutz
------------------
[This message has been edited by Peter Scheutz (edited January 17, 2001).]
Comment