ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Wordpad (https://www.excelbanter.com/excel-programming/404179-wordpad.html)

Kee

Wordpad
 
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,

Mark Ivey

Wordpad
 
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



"kee" wrote in message
...
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,



Kee

Wordpad
 


"Mark Ivey" wrote:

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



"kee" wrote in message
...
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,



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....


All times are GMT +1. The time now is 09:42 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com