A simple question for type convention in vb

S

stewart

I want to use automation method to
use word object in a mfc dll. and use this dll to get the application object
in vb or vb script.

like this :
_Application app;
app.createobject(_T("word.application"))
app.setvisible(true);
app.quit(..);
app.releasedispatch();

and the question is:
How can i use this dll in vb or vb script(like notes)
can i directly get the application object in vb
or how can i make the type convention in vb?
 
Top