Results 1 to 4 of 4

Thread: [FAQ's: OD] How do I read/write to a document?

Threaded View

  1. #1

    Thread Starter
    Ex-Super Mod RobDog888's Avatar
    Join Date
    Apr 2001
    Location
    LA, Calif. Raiders #1 AKA:Gangsta Yoda™
    Posts
    60,709

    [FAQ's: OD] How do I read/write to a document?

    The methods of access to a Word document is done via the Document's .Content property, .Bookmark, .Section, .Page and .Paragraph objects. Also, the global object - Application.Selection.

    Here's a couple of basic examples...

    Word 2003 VB 6 Code Example (Read):

    VB Code:
    1. Option Explicit
    2.  
    3. Private Sub ReadStuff()
    4.    
    5.     Dim oApp As Word.Application
    6.     Dim oDoc As Word.Document
    7.    
    8.     Set oApp = New Word.Application
    9.     'Open an exisiting document
    10.     Set oDoc = oApp.Documents.Open("C:\Document1.doc")
    11.     oDoc.Activate
    12.  
    13.     'Multi-Line Textbox or RichTextBox control
    14.     Form1.Text1.Text oDoc.Content
    15.     oDoc.Close SaveChanges:=False
    16.     Set oDoc = Nothing
    17.     oApp.Quit
    18.     Set oApp = Nothing
    19.    
    20. End Sub
    Last edited by RobDog888; Aug 23rd, 2006 at 04:19 PM.
    VB/Office Guru™ (AKA: Gangsta Yoda®)
    I dont answer coding questions via PM. Please post a thread in the appropriate forum.

    Microsoft MVP 2006-2011
    Office Development FAQ (C#, VB.NET, VB 6, VBA)
    Senior Jedi Software Engineer MCP (VB 6 & .NET), BSEE, CET
    If a post has helped you then Please Rate it!
    Reps & Rating PostsVS.NET on Vista Multiple .NET Framework Versions Office Primary Interop AssembliesVB/Office Guru™ Word SpellChecker™.NETVB/Office Guru™ Word SpellChecker™ VB6VB.NET Attributes Ex.Outlook Global Address ListAPI Viewer utility.NET API Viewer Utility
    System: Intel i7 6850K, Geforce GTX1060, Samsung M.2 1 TB & SATA 500 GB, 32 GBs DDR4 3300 Quad Channel RAM, 2 Viewsonic 24" LCDs, Windows 10, Office 2016, VS 2019, VB6 SP6

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width