vote up 1 vote down star
1

Hi,

I'd liked to know whether it is possible to call a function in VBScript from C#. Let me try to clarify. I'm using an application (Quick Test Professional or "QTP") that automates another application, mostly using VBScript. There is the ability, via an add in model, to extend the test functionality by writing add-ins to the testing application (QTP) that are .NET assemblies. The basic workflow is that the VBScript tests automate the test application, and can call methods on a class in the extensibility add in assembly to do more complicated things. This part works fine.

What I'd like to know is whether it is possible for my C# code (in the extensibility add in assembly) to call back to a function in the VBScript. I don't think the test application framework (QTP) explicitly supports this, so I'm wondering if there is any way to do this using standard interop techniques. I was half way thinking of using GetRef() to get a reference to the VBScript function of interest, passing this as a parameter to a method I call in the extensibility addin (I suspect I would run into marshaling issues even at this point?) and then within the C# code of my extensibility add in, somehow call a method on this object; this is where I'm completely lost (since I don't know how to do this without the necessary type information normally used in reflection).

I'm thinking this may not be possible, but would like confirmation if that's the case.

Thank you!

flag

50% accept rate

2 Answers

vote up 0 vote down

That's a toughie.

You MAY want to try writing an event handler in the VBScript side for the .NET component and raising an event on the .NET side when you want the function to be called.

Just be warned it may not even work, as it really depends on QTP's scripting engine. And even if it should, don't be surprised if it becomes an exercise in frustration.

See examples on WSH and event handling http://msdn.microsoft.com/en-us/library/ms974564.aspx Again, this probably won't apply to QTP, but it's to give you an idea of potential approach to the problem.

Edit: Additional link which may or may not help!

http://www.west-wind.com/presentations/dotnetfromVfp/DotNetFromVfp_EventHandling.asp

link|flag
It's VBScript. Does it have events? – John Saunders Jun 25 at 16:56
I had previously had the same thought, and found the same (first) page you referenced. However, I don't think QTP is using WSH and none of the other approaches (in the MSDN reference) to subscribe to events in VBScript seemed to work in my scenario. I think this is because I can't influence what is passed into the scripting engine (as I'm not QTP), and thus use the 'automagic' and calling functions approach can't be used. – Notre Jun 25 at 17:00
@ John: Event handling has been around for quite some time now (think Internet Explorer). But its support is inconsistent and largely dependant on the implementation of the scripting engine. @ Notre: Sorry, then. The vendor may be better equipped to give you an answer. – hythlodayr Jun 25 at 17:11
The vendor hasn't been too helpful (in a related question I posed to them) and I find nothing in their documentation that suggests it is supported. That's why I thought I'd post here to see if there was any thing I might have been missing, from a more general interop perspective. – Notre Jun 25 at 17:21
I had totally forgotten Object_EventName. Even so, that would apply to COM events. That would be a bit of a mess to call from C#, and a maintenance problem, considering how few people remember COM eventing. – John Saunders Jun 25 at 18:11
show 5 more comments
vote up 0 vote down

How does the VBScript call the C# code? I suspect that it is really calling on QTP, and QTP is calling the C# code. In that case, only QTP could possibly call the VBScript back.

Under what circumstances would your C# code call back? I doubt that VBScript can be called back asynchronously.

link|flag
I don't know how the VBScript calls the C# code. If I had to guess, think you're right; it's likely relying on QTP and QTP is calling the C# code. Ideally, my C# code would callback the VBScript method in response to an event raised in the control, which the C# code subscribed to. – Notre Jun 25 at 16:54
Yeah, that's really not going to work, as far as I can see. VBScript is a scripting language. It does not understand events, or multi-threading, and I'm sure it has no idea it might be called asynchronously. Consider: could you do this with just pure VBScript? Have a VBSCript script call a VBScript function that later "calls back" the original? I see no way to do that. – John Saunders Jun 25 at 16:59
Yes, VBScript does understand events in different ways, depending on the hosting application & the scripting engine used; hythlodayr references a couple of web pages below. (The first reference is most appropriate). – Notre Jun 25 at 17:13

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.