Using a user input form, how can I get the information from the current record to be printed to a word doc? This is what I have so far...
Private Sub CmdPrint_Click()
Dim stAppName As String
stAppName = "c:\program files\microsoft office\office\winword.exe c:\my documents\infoletter.doc"
Call Shell(stAppName, 1)
End Sub
This merges all records and not just the one the user has just finished inputting.
Thanks!
Private Sub CmdPrint_Click()
Dim stAppName As String
stAppName = "c:\program files\microsoft office\office\winword.exe c:\my documents\infoletter.doc"
Call Shell(stAppName, 1)
End Sub
This merges all records and not just the one the user has just finished inputting.
Thanks!