|
-
Nov 15th, 2000, 11:10 PM
#1
Thread Starter
Addicted Member
Hi,
When I use the following Code
Dim WrdApp As Object
Set WrdApp = CreateObject("word.application")
I get "OLE Automation server can't create object" Error,
Can you tell me why?
-
Nov 15th, 2000, 11:14 PM
#2
Originally posted by Mass
Hi,
When I use the following Code
Dim WrdApp As Object
Set WrdApp = CreateObject("word.application")
I get "OLE Automation server can't create object" Error,
Can you tell me why?
Try:
Set WrdApp = CreateObject(, "word.application")
or
Set WrdApp = CreateObject("", "word.application")
-
Nov 15th, 2000, 11:22 PM
#3
Thread Starter
Addicted Member
when I use
Set WrdApp = CreateObject(, "word.application")
I get (aruments not optional)
and With
Set WrdApp = CreateObject("", "word.application")
I get (Wrong number of aruments) error
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|