by CarlRanson >> Thu, 11 Sep 2003 5:25:23 GMT
I have an automation question.
In visual basic you could do this:
Set WordApp = GetObject(, "Word.Application")
to connect to a running copy of word as an automation server. This prevents you from having to run up an entirely new copy of word, and can make a BIG difference in performance.
From the msdn VB help:
If PathName is a zero-length string (""), GetObject returns a new object instance of the specified type. If the PathName argument is omitted, GetObject returns a currently active object of the specified type. If no object of the specified type exists, an error occurs.
Anyone got an idea as to how i can achieve the same thing in Jade????
CR