Copying Records to a Word Document (Example 1) : Access to Word « Access « VBA / Excel / Access / Word

VBA / Excel / Access / Word
1. Access
2. Application
3. Data Type
4. Data Type Functions
5. Date Functions
6. Excel
7. File Path
8. Forms
9. Language Basics
10. Math Functions
11. Outlook
12. PowerPoint
13. String Functions
14. Windows API
15. Word
16. XML
Java
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
VBA / Excel / Access / Word » Access » Access to Word 
Copying Records to a Word Document (Example 1)
 
Option Compare Database
Option Explicit
' be sure to select Microsoft Word Object Library
' in the References dialog box

Public myWord As Word.Application

Sub SendToWord()
   Dim conn As ADODB.Connection
   Dim myRecordset As ADODB.Recordset
   Dim doc As Word.Document
   Dim strSQL As String
   Dim varRst As Variant
   Dim As Variant
   Dim strHead As String
   Set conn = New ADODB.Connection
   Set myRecordset = New ADODB.Recordset

   conn.Provider = "Microsoft.Jet.OLEDB.4.0;Data Source=" & CurrentProject.Path & "\mydb.mdb"

   strSQL = "SELECT ShipperId as Id,CompanyName as [Company Name],Phone FROM Shippers"

   conn.Open
   myRecordset.Open strSQL, conn, adOpenForwardOnly, _
      adLockReadOnly, adCmdText

   If Not myRecordset.EOF Then
      varRst = myRecordset.GetString(adClipString, , vbTab, vbCrLf)
      For Each f In myRecordset.Fields
         strHead = strHead & f.Name & vbTab
      Next
   End If

   Set myWord = New Word.Application
   Set doc = myWord.Documents.Add
   myWord.Visible = True
   doc.Paragraphs(1).Range.Text = strHead & vbCrLf
   doc.Paragraphs(2).Range.Text = varRst

   Set myWord = Nothing
End Sub

 
Related examples in the same category
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.