Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View chellinsky's full-sized avatar

Andrew Chellinsky chellinsky

View GitHub Profile
@chellinsky
chellinsky / Word Report from Access DB
Created January 19, 2014 08:17
Takes information from an Access DB and outputs a Word document that displays the information visually using ASCII characters and shading.
Private Sub Roadmap_Click()
On Error GoTo Err_Handler
Dim db As Database, rs As Recordset
Dim wdObj As Word.Application
Dim wdDoc As Word.Document
Dim lgNumRows As Long
Dim iRow As Integer
Dim iColumn As Integer