F figaro Guest May 28, 2002 #1 Hello, can anybody help me, or get me started manipulating/printing a report from an access db within VB6. Thanks, Figaro
Hello, can anybody help me, or get me started manipulating/printing a report from an access db within VB6. Thanks, Figaro
Y yellow Registered User. Local time Today, 05:10 Joined May 16, 2002 Messages 122 May 28, 2002 #2 Dim Axs As Access.Application Set Axs = New Access.Application Axs.OpenCurrentDatabase YourDatabasePath, False Axs.DoCmd.OpenReport "YourReportName" Axs.Quit Set Axs = Nothing
Dim Axs As Access.Application Set Axs = New Access.Application Axs.OpenCurrentDatabase YourDatabasePath, False Axs.DoCmd.OpenReport "YourReportName" Axs.Quit Set Axs = Nothing