VBscript to C# (running app)

Joined
Mar 17, 2008
Messages
2
Reaction score
0
Hello,

I have the following VBscript code which needs to be converted to C#:

----------------------
dim oApp;
dim dic;

set oApp = createObject("xyz.Application");
set dic = createObject("Scripting.Dictionary");

call dic.add("file", "abc/def.xml");

call oApp.openWindow("xyz", "model.htm", "", dic, "resizable:no;help:no", 1);
-----------------------

I'm quite new to C# (and don't know anything about VBscript). I've seen some code that could help me with the CreateObject part, but for the rest I don't really have a clue.. What libraries, methods and code do I need?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top