I would like to add/remove buttons to/from the toolbar depending on the presence of software on my system.
After hours of trying different versions I still haven't found the correct syntax.
For example:
I want my TCSTART to contain generic code only and run an extra batch with specific initialisation in a separate console for Perl.
Something like
What is the correct syntax? Why does the Help text show the first two parameters separated by spaces and the rest by comma's? The docs describe the value of the flags to be both zero-based and 256-based. Which is correct or what is the difference? If different combinations of parameters accomplish different things, which is for what?
Please help.
After hours of trying different versions I still haven't found the correct syntax.
For example:
I want my TCSTART to contain generic code only and run an extra batch with specific initialisation in a separate console for Perl.
Something like
Code:
IFF ISFILE C:\Perl\bin\perl.exe THEN
[INDENT]SET tab=Consoles
SET btn=n
SET flg=256
SET icn=C:\Perl\bin\perl.exe
SET ttl=Perl5
SET dir=C:\Develop\Perl
SET cmd=%ComSpec StartPerl.BTM
TCTOOLBAR %tab %btn, %flg, %icn, %ttl, %dir, %cmd
[/INDENT]ENDIFF
What is the correct syntax? Why does the Help text show the first two parameters separated by spaces and the rest by comma's? The docs describe the value of the flags to be both zero-based and 256-based. Which is correct or what is the difference? If different combinations of parameters accomplish different things, which is for what?
Please help.