Hi guys,
I just thought I would share a small utility I used when developing with AGK.
With a large project you can end up with many files and some of those files can get quite large.
I wanted a way to see all the functions at once and ideally see which line each function resided at.
The attached little tool runs in the projects folder and scans through each file producing a header at the top listing all functions and line numbers.
You get something like this:
//----------- Function List -----------//
/*
98 : function Network_Connect ( )
123 : function Network_SetupErrorDialog ( )
153 : function Network_ClearErrorDialog ( )
163 : function Network_Close ( )
167 : function Network_ResetState ( )
172 : function Network_RegisterUser ( name$, password$, email$ )
178 : function Network_ForgottenDetails ( name$, email$ )
184 : function Network_LoginUser ( name$, password$ )
*/
//-------------------------------------//
You can then copy the line number, do CTRL+G and jump straight to the function.
>> If you need to refresh the info you will have to remove the header code first and re run the tool. <<
Might not be any use to you, but I thought I would share it none the less.
PS - Back up your source code before use, better safe than sorry
Dave Milton
TGC Team