开发者_如何学编程
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this questionDoes someone know where can i find a vbscript autocomplete, google style (no postback)?
Thanks
I'm guessing you're talking about intellisense?
There's intellisense in Visual Studio 2008 and it recognizes COM objects, for example, if you were to start typing the following:
Dim fso
Set fso = CreateObject("Scripting.FileSystemObject")
Dim f
Set f = fso.
The moment you press the fullstop (.) after fso it will "intelligently" lookup the definition "Scripting.FileSystemObject" and present you with a choice of methods and properties. If you continue typing "OpenTextFile(" it will "intelligently" lookup the parameters for you.
Currently no one use VBScript as a client side scripting language, so you won't be able to find a VBScript autocomplete script anywhere on the Internet.
It is advisable to use JavaScript instead of VBScript, as only IE browsers support VBScript.
EDIT: If you take a look at this, you'll know where VBScript lies.
Test Design Studio is a very good IDE for VBScript development. Also you can try VBSEdit. I would highly recommend Test Design Studio, its a cool development tool for VBScript programmers.
You can use Vbsedit http://www.adersoft.com/
This has many features that will help you create, edit, debug your vbs files. You can also use it to compile to EXE without unpacking to temporary folder.
To use autocomplete just press ALT + right arrow OR CTRL + Space, or Right click in the editing area and click complete word. OR click the 'Edit' button on the menu bar then click 'Complete Word'
Visit their website for more information.
Try Notepad++ it works great for VBScript and many other things!
https://notepad-plus-plus.org/
精彩评论