Link to home
Start Free TrialLog in
Avatar of vjnwarp
vjnwarp

asked on

displaying a document in a textbox

How to display a saved document inside a textbox?
I would like to display a document file created with Microsoft Word.

Avatar of seahpc
seahpc

what kind of document is that ?
a word document, a text file ?????????????
Avatar of vjnwarp

ASKER

Edited text of question
Unless you learn how Word stores its documents, you won't be able to show a Word document in a textbox.  You can, however, insert a Word object into your project, and use that to display the document through OLE.
Avatar of vjnwarp

ASKER

Thanks dirtdart. But is there a some way to solve my problem?


Well, like I said above, if you just want to display the Word document, then you can insert the document itself into the project using OLE.  Go to Project | Components and when the dialog box appears, scroll through the list of insertable objects.  You should find Word Document somewhere in that list.  Keep in mind, however, that Office components are not redistributable.  If you use an Office component in your project, you must make sure that all target machines have Office installed on them or the project will fail to run.
I think vjnwarp wants to display a word file at run-time, don't think it's possible for a word document, unless it's ASCII text formatted.
It's possible.  You would just have to add an OLE Container object to your form at design time.  Then, you could insert any OLE compliant document (Word, Excel, etc) into it by setting the correct proeprties.  Unfortunatly, I'm not experienced enough with the OLE Container to tell you specifically how to use it.  Never needed it myself.
Maybe you can use the wordviewer from

http://www.microsoft.com/word/internet/viewer/viewer97/wd97vwr32.exe

to view the word document embedded in a vb5 app?

/mtoft

Avatar of vjnwarp

ASKER

thanks dirtdart i've accepted your answer. And you taught me how the WORD stores their documents. So i've use a richtextbox and
translate my WORD document into an RTF format. Thanks again.

ASKER CERTIFIED SOLUTION
Avatar of dirtdart
dirtdart

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial