I'm trying to use MS Development Environment (mse.exe) to edit VBS files. Is there any way to declare an object variable so that it's members will be listed in the Members List drop-down box (IntelliSense)?
I tryed to declare it with
Dim objWord as new Word.Application
Set objWord=CreateObject("Word.Application"
Even after I inserted Word COM into libraries of Object Browser it didn't help. The class itself is shown in the Object Browser but I just can't get the list of its members in the code window! What's wrong ?
I tryed to declare it with
Dim objWord as new Word.Application
Set objWord=CreateObject("Word.Application"
Even after I inserted Word COM into libraries of Object Browser it didn't help. The class itself is shown in the Object Browser but I just can't get the list of its members in the code window! What's wrong ?