I used to use the code below on a command button in Access to fill form letter (.docx).
If Me.Dirty Then Me.Dirty = False
Set ObjWord = GetObject("C:\MY DOCUMENTS\FORM LETTER.docx", "Word.Document")
ObjWord.Application.Visible = True
ObjWord.MailMerge.OpenDataSource _
Name:=" C:\MY...
When are viewing the database through a Form, the specific record you are looking at, not the whole table.
If I wanted to print a report with just that record, I use
the code:
DoCmd.OpenReport "LETTER_COMRATS", acViewPreview, , "ID=" & Me.ID"
Is there a mail merge equivalent for just the...
Hello All,
I am trying to make a command button in Access that will fill a Word Mail Merge with information from that record set. The code I have so far is:
Set objWord = GetObject("C:\My documents\Mail Merge.docx", "Word.Document")
objWord.Application.Visible = True...
I need to change the tracking, or character spacing. The issue is that the form has a box for each character.
Instead of using a text box for each letter, I want to use a signle textbox that the user can input the whole word, than use a script to space the characters out evenly so that they...
I have a textbox in a fillable PDF that I want to change the spacing of the text that is input. How do you change the textbox so that the spacing between characters are changed?
The table with the dates is named tblDates, the field is [TheDate].
The table with the check in/out dates is named MasterDatabase, the check in date is [GAIN DATE] and the checkout date is [CHECK OUT DATE].
I have database that we use at an animal shelter. The day an animal arrives we record the day [gain date] and when it leaves [check out date].
I am trying to make a query that I can use to create a graph of number of animals per day over the year. How do I create a query to count the number...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.