Search found 14 matches

by samuelz
Thu Feb 21, 2013 5:12 pm
Forum: VBScript
Topic: access COM enums in VBScript
Replies: 1
Views: 3915

access COM enums in VBScript

COM objects usually come with classes and enums, in VBScript, you can access COM classes using CreateObject() or GetObject(); how can one access enums? For example, how do you access "XITickMark.xlTickMarkCross" in "Excel.Application" using VBScript? this can be done easily in VB...
by samuelz
Thu Feb 21, 2013 4:56 pm
Forum: VBScript
Topic: connecting/attaching to an external process when debugging
Replies: 14
Views: 247530

connecting/attaching to an external process when debugging

I have figured out how to make it work. thank you for your "help"!
by samuelz
Thu Feb 21, 2013 1:27 pm
Forum: VBScript
Topic: connecting/attaching to an external process when debugging
Replies: 14
Views: 247530

connecting/attaching to an external process when debugging

the script I am using is VBScript, that is why I posted my question here! I hope you understood my question before you answer, it is not about on how to run debugger, but instead, when running debugger, how to "connect" it to the external application declared using GetObject
by samuelz
Wed Feb 20, 2013 11:16 am
Forum: VBScript
Topic: connecting/attaching to an external process when debugging
Replies: 14
Views: 247530

connecting/attaching to an external process when debugging

Hi, I am new to PrimalScript, so my questions might be answered somewhere in the forum already. the external application I use support COM, and in Visual Studio, if you use VB, you can use GetObject() to get the main application, and then from there, you can run debuger in VS and it automatically co...