Results 1 to 4 of 4

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

  1. #1

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

    [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

  2. #2

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

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



    Word 2003 VB 6 Code Example (Write):
    VB Code:
    1. Option Explicit
    2. 'Add a reference to MS Word xx.0 Object Library
    3. Private Sub WriteStuff()
    4.    
    5.     Dim oApp As Word.Application
    6.     Dim oDoc As Word.Document
    7.    
    8.     Set oApp = New Word.Application
    9.     'Open either a blank new document or...
    10.     Set oDoc = oApp.Documents.Add
    11.     'open an exisiting document
    12.     'Set oDoc = oApp.Documents.Open("C:\Document1.doc")
    13.     oDoc.Activate
    14.  
    15.     'Move to the last line and add a new  line.
    16.     oApp.Selection.GoTo What:=wdGoToLine, Which:=wdGoToLast
    17.     oApp.Selection.TypeParagraph
    18.     'Set a font size for our text
    19.     oApp.Selection.Font.Size = 12
    20.     'Enter in some meaningful text
    21.     oApp.Selection.TypeText Text:="Meow,"
    22.     'Turn the bold text format on
    23.     oApp.Selection.Font.Bold = wdToggle
    24.     'Enter in some text under the bold effect
    25.     oApp.Selection.TypeText Text:="Meow,"
    26.     'Turn bold formatting off
    27.     oApp.Selection.Font.Bold = wdToggle
    28.     'Turn italic formatting on
    29.     oApp.Selection.Font.Italic = wdToggle
    30.     'Increase the font size.
    31.     oApp.Selection.Font.Size = 16
    32.     'Enter in more text
    33.     oApp.Selection.TypeText Text:="Meow"
    34.     'Turn off formatting and revert size
    35.     oApp.Selection.Font.Italic = wdToggle
    36.     oApp.Selection.Font.Size = 12
    37.    
    38.     Set oDoc = Nothing
    39.     Set oApp = Nothing
    40.  
    41. End Sub
    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

  3. #3

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

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

    Another method of writting contents to a Word document is by pasting the contents of the Windows Clipboard into your Word document.

    Word 2003 VB 6 Code Example (Write):

    VB Code:
    1. Option Explicit
    2. 'Add a areference to MS Word xx.0 Object Library
    3. Private Sub Command1_Click()
    4.  
    5.     Dim oApp As Word.Application
    6.     Dim oDoc As Word.Document
    7.    
    8.     Set oApp = New Word.Application
    9.     oApp.Visible = True
    10.     Set oDoc = oApp.Documents.Add
    11.     oDoc.Activate
    12.     oDoc.Select
    13.     oApp.Selection.Paste 'Pastes whatever is on the clipboard.
    14.     'Clean up objects
    15.     Set oDoc = Nothing
    16.     Set oApp = Nothing
    17.    
    18. End Sub
    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

  4. #4

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

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

    Another method for converting a Word document into some other format.

    VB 6 And Word 97-2007:

    vb Code:
    1. Option Explicit
    2. 'Add a reference to MS Word xx.0 Object Library
    3. Private Sub Command1_Click()
    4.     Dim oApp As Word.Application
    5.     Dim oDoc As Word.Document
    6.     Set oApp = New Word.Application
    7.     'Open an exisiting document
    8.     Set oDoc = oApp.Documents.Open("C:\Document1.doc")
    9.     'Save it as some other format
    10.     oDoc.SaveAs FileName:="C:\SomePath\SomeFile.txt", FileFormat:=wdFormatDOSTextLineBreaks  '(Or wdFormatDOSText)
    11.     oDoc.Close SaveChanges:=False
    12.     Set oDoc = Nothing
    13.     oApp.Quit
    14.     Set oApp = Nothing
    15. End Sub
    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