Wordpad

  • Thread starter Thread starter kee
  • Start date Start date
K

kee

I have an embedded wordpad which i can access as an oleobject in VBA. I am
completely unsuccessful and curious if I could read the contents of the
embedded file. Once I have the file contents read, I am going to parse the
information and direct the information to cells.

I just need a direction and if the capability is feasible without writing a
temp file and then reading a temp file from the filesystem.


Thanks,
 
It appears possible. I just created a Wordpad object in Book1, typed in
"hello world", and then used the macro recorder to copy the text from this
object to cell "A1".

Here is what the macro recorder came up with...

Sub Macro1()

ActiveSheet.Shapes("Object 1").Select
Selection.Verb Verb:=xlPrimary
Range("A1").Select
ActiveSheet.Paste

End Sub
 
Mark Ivey said:
It appears possible. I just created a Wordpad object in Book1, typed in
"hello world", and then used the macro recorder to copy the text from this
object to cell "A1".

Here is what the macro recorder came up with...

Sub Macro1()

ActiveSheet.Shapes("Object 1").Select
Selection.Verb Verb:=xlPrimary
Range("A1").Select
ActiveSheet.Paste

End Sub

Another site convinced me to go to a texbox. As soon as I done with that I
will retry this code. I was wondering if I could record the action with a
macro.....great thanks! I am sure it will work....
 

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

Back
Top