How to open a file with win32ole

L

Li Chen

Hi all,

I want to open a file via win32ole. I find the method 'Open' there but
always get error feedback. I wonder if anyone can give me a hand.

Thanks,

Li

########################
require 'win32ole'
fs=WIN32OLE.new('SAPI.SpFileStream')
count=1
fs.ole_methods.each{|m|
print count,"\t"
print m,"\t"
print m.return_type_detail,"\t"
puts
count+=1
}

file='c:/test.txt'
fs.open(file)###line14 here


win32ole2.rb:14:in `method_missing': open (WIN32OLERuntimeError)
OLE error code:800C0005 in <Unknown>
<No Description>
HRESULT error code:0x80020009
Exception occurred. from win32ole2.rb:14
 
G

gpy good

try this:

require 'win32ole'
fs=WIN32OLE.new('SAPI.SpFileStream')

p fs.ole_method("open").params

file='c:/test.txt'


fs.Open(file,2) #least two params
fs.write("data")
fs.Close
 
L

Li Chen

gpy said:
try this:

require 'win32ole'
fs=WIN32OLE.new('SAPI.SpFileStream')

p fs.ole_method("open").params

file='c:/test.txt'


fs.Open(file,2) #least two params
fs.write("data")
fs.Close

Hi bud,

Thank you very much for the tips. It is so sweet.

From this example I guess that if a method is on the list but the object
cannot receive it, most likely that more parameters need to be passed
in.

One more question: How am I supposed that I should pass number 2 in the
script above, instead of other numbers like, 0, 1, 10,...?


Li
 

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

Members online

No members online now.

Forum statistics

Threads
473,770
Messages
2,569,583
Members
45,073
Latest member
DarinCeden

Latest Threads

Top