@Sir_SiLvA
The right place for loading the RSSDoc is the FsFindFiles function.
This function is called when TC asks for the files to show, also for example if you press F2 (Refresh). And a refresh should really reload the data, isn't it?
In the global section (outside of any function) you should only declare the variable "RSSDoc", so you can use this variable in FsGetFile, FsExecuteFile, ... without the need of loading again.
To declare the variable insert the following line:
Dim RSSDoc
Sadly i don't know an online VBScript course. But maybe Google will help you.
@All script writers
Attention
If you modify my example scripts, please do it in a copy of the sample file. Otherwise your modified files will be overridden if you install a new version of my plugin.
@All script writers
Would you like to debug your scripts?
Would you like to update your Windows Scripting Runtimes (not yet WinXP) to use the latest features of VBScript?
Do you need a documentation for VBScript and other Windows Script related stuff?
All this and more you can download for free in the
Microsoft Windows Script Downloads
How to: Debugging your scripts
1. Download and install the Microsoft Script Debugger
2. Enable Debugging in the Registry
- Goto Key HKCU\Software\Microsoft\Windows Script\Settings
- Set JITDebug to 1
3. Insert a "Stop" statement in your script, where you would start
debugging.
If code execution reaches your Stop, it will stop execution and start the
debugger
Have fun
