By clicking a button in Access I’d like to open word and automatcially create a file with a specific name. I’ve sorted out creating the correct folders and subfolders to contain the document, but don’t know how to tell word to save the file automatically as a specific name – any ideas?
![]() |
Patch reliability is unclear. Unless you have an immediate, pressing need to install a specific patch, don't do it. |
SIGN IN | Not a member? | REGISTER | PLUS MEMBERSHIP |
-
Create a word file (2000)
Home » Forums » AskWoody support » Productivity software by function » MS Access and database help » Create a word file (2000)
- This topic has 22 replies, 2 voices, and was last updated 21 years, 1 month ago.
Viewing 1 reply threadAuthorReplies-
WSHansV
AskWoody LoungerApril 2, 2004 at 10:53 am #808666You can use Automation to control Word from Access. Set a reference to the Microsoft Word 9.0 Object Library in Tools | References… (in the Visual Basic Editor.)
Dim objWord As New Word.Application
Dim objDoc As Word.Document
Dim strFileName As StringSet objDoc = objWord.Documents.Add
‘ code to fill the document goes here
‘ …
strFileName = … ‘ fill in the appropriate path and file name
objDoc.SaveAs strFileNameobjDoc.Close
Set objDoc = Nothing
objWord.Quit
Set objWord = NothingSee Automation 101 on WendellB‘s website for an introduction to Automation.
-
WSjaf90
AskWoody LoungerApril 2, 2004 at 11:10 am #808674Thanks Hans
Does the As New have any significance in the first line as opposed to just As?
I needed to be able to modify the file once I’d saved it, so used objWord.visible = true
If I do this with the close and quit options left in, it obviously displays the document for a split second, then closes the doc, quits Word and returns to Access. Can I allow it to stay in Word until the changes have been made and word is quit manually before going back to Access?
John
-
WSHansV
AskWoody LoungerApril 2, 2004 at 11:20 am #8086801. Dim … As New … means that you declare an object variable and set it at the same time. It is equivalent to
Dim objWord As Word.Application
Set objWord = CreateObject(“Word.Application”)2. If you want to edit the document, use
objWord.Visible = True
as you have done, and delete the lines objDoc.Close and objWord.Quit. The document will remain open in Word then until the user closes it.
-
WSjaf90
AskWoody Lounger -
WSHansV
AskWoody LoungerApril 2, 2004 at 11:37 am #808741According to the online help, SaveAs overwrites existing documents without asking, so you’ll have to write your own check:
strFileName = … ‘ fill in the appropriate path and file name
If Not Dir(strFileName) = “” Then
If MsgBox(“A document ” & strFileName & ” already exists. Overwrite it?”, _
vbYesNo + vbQuestion) = vbNo Then
Exit Sub
End If
End If
objDoc.SaveAs strFileName -
WSjaf90
AskWoody LoungerApril 2, 2004 at 12:17 pm #808812Is there a method of forcing Word to maximise at the time of opening the document? It seems to be a bit hit and miss as to how it starts.
Also, how would I open a specific file, rather than creating a new one – I’m going to change the routine so that if the file exists it opens it, otherwise it creates a new file with the specified filename.
-
WSHansV
AskWoody Lounger -
WSjaf90
AskWoody Lounger -
WSHansV
AskWoody LoungerApril 2, 2004 at 12:52 pm #808834If you need more, it is often easier to try out things in Word first, for example by recording a macro, and looking at the generated VBA code. When you’ve got it right, you can transfer the code to Access, prefixing methods and properties that belong to the Word application with objWord. For instance, if you type some text in a Word document, the macro recorder generates code like this:
Selection.TypeText Text:=”This is a sentence.”
Selection.TypeParagraphIn Access, this becomes:
objWord.Selection.TypeText Text:=”This is a sentence.”
objWord.Selection.TypeParagraph -
WSjaf90
AskWoody LoungerApril 2, 2004 at 1:09 pm #808838Thanks for the advice regarding the Word testing.
One slight problem I’m still having with this routine is with regard to which folder has the focus (for want of a better word).
The start of the routine creates a client folder in C:Data eg. c:DataClientOne and a subfolder in this for the contract eg. C:DataClientOneContractThree. The files I’m creating are then stored in this structure.
During testing I was creating and deleting files, but found that I wasn’t able to delete a subfolder which I had just written to via the Access/Word routines. I could delete the Word file which I had just created, but not the folder in which it was contained.
I probably won’t need to delete anything in this manner, but was interested to know what is holding the folder to make it undeleteable
The lock is released when I close the Access database
John -
WSHansV
AskWoody Lounger -
WSHansV
AskWoody Lounger -
WSjaf90
AskWoody LoungerApril 2, 2004 at 1:09 pm #808839Thanks for the advice regarding the Word testing.
One slight problem I’m still having with this routine is with regard to which folder has the focus (for want of a better word).
The start of the routine creates a client folder in C:Data eg. c:DataClientOne and a subfolder in this for the contract eg. C:DataClientOneContractThree. The files I’m creating are then stored in this structure.
During testing I was creating and deleting files, but found that I wasn’t able to delete a subfolder which I had just written to via the Access/Word routines. I could delete the Word file which I had just created, but not the folder in which it was contained.
I probably won’t need to delete anything in this manner, but was interested to know what is holding the folder to make it undeleteable
The lock is released when I close the Access database
John -
WSHansV
AskWoody LoungerApril 2, 2004 at 12:52 pm #808835If you need more, it is often easier to try out things in Word first, for example by recording a macro, and looking at the generated VBA code. When you’ve got it right, you can transfer the code to Access, prefixing methods and properties that belong to the Word application with objWord. For instance, if you type some text in a Word document, the macro recorder generates code like this:
Selection.TypeText Text:=”This is a sentence.”
Selection.TypeParagraphIn Access, this becomes:
objWord.Selection.TypeText Text:=”This is a sentence.”
objWord.Selection.TypeParagraph -
WSjaf90
AskWoody Lounger -
WSHansV
AskWoody Lounger -
WSjaf90
AskWoody LoungerApril 2, 2004 at 12:17 pm #808813Is there a method of forcing Word to maximise at the time of opening the document? It seems to be a bit hit and miss as to how it starts.
Also, how would I open a specific file, rather than creating a new one – I’m going to change the routine so that if the file exists it opens it, otherwise it creates a new file with the specified filename.
-
WSHansV
AskWoody LoungerApril 2, 2004 at 11:37 am #808742According to the online help, SaveAs overwrites existing documents without asking, so you’ll have to write your own check:
strFileName = … ‘ fill in the appropriate path and file name
If Not Dir(strFileName) = “” Then
If MsgBox(“A document ” & strFileName & ” already exists. Overwrite it?”, _
vbYesNo + vbQuestion) = vbNo Then
Exit Sub
End If
End If
objDoc.SaveAs strFileName
-
-
WSjaf90
AskWoody Lounger
-
-
WSHansV
AskWoody LoungerApril 2, 2004 at 11:20 am #8086811. Dim … As New … means that you declare an object variable and set it at the same time. It is equivalent to
Dim objWord As Word.Application
Set objWord = CreateObject(“Word.Application”)2. If you want to edit the document, use
objWord.Visible = True
as you have done, and delete the lines objDoc.Close and objWord.Quit. The document will remain open in Word then until the user closes it.
-
-
WSjaf90
AskWoody LoungerApril 2, 2004 at 11:10 am #808675Thanks Hans
Does the As New have any significance in the first line as opposed to just As?
I needed to be able to modify the file once I’d saved it, so used objWord.visible = true
If I do this with the close and quit options left in, it obviously displays the document for a split second, then closes the doc, quits Word and returns to Access. Can I allow it to stay in Word until the changes have been made and word is quit manually before going back to Access?
John
-
-
WSHansV
AskWoody LoungerApril 2, 2004 at 10:53 am #808667You can use Automation to control Word from Access. Set a reference to the Microsoft Word 9.0 Object Library in Tools | References… (in the Visual Basic Editor.)
Dim objWord As New Word.Application
Dim objDoc As Word.Document
Dim strFileName As StringSet objDoc = objWord.Documents.Add
‘ code to fill the document goes here
‘ …
strFileName = … ‘ fill in the appropriate path and file name
objDoc.SaveAs strFileNameobjDoc.Close
Set objDoc = Nothing
objWord.Quit
Set objWord = NothingSee Automation 101 on WendellB‘s website for an introduction to Automation.
Viewing 1 reply thread -

Plus Membership
Donations from Plus members keep this site going. You can identify the people who support AskWoody by the Plus badge on their avatars.
AskWoody Plus members not only get access to all of the contents of this site -- including Susan Bradley's frequently updated Patch Watch listing -- they also receive weekly AskWoody Plus Newsletters (formerly Windows Secrets Newsletter) and AskWoody Plus Alerts, emails when there are important breaking developments.
Get Plus!
Welcome to our unique respite from the madness.
It's easy to post questions about Windows 11, Windows 10, Win8.1, Win7, Surface, Office, or browse through our Forums. Post anonymously or register for greater privileges. Keep it civil, please: Decorous Lounge rules strictly enforced. Questions? Contact Customer Support.
Search Newsletters
Search Forums
View the Forum
Search for Topics
Recent Topics
-
Windows 10: Microsoft 365 Apps will be supported up to Oct. 10 2028
by
Alex5723
1 hour, 49 minutes ago -
Add or Remove “Ask Copilot” Context Menu in Windows 11 and 10
by
Alex5723
1 hour, 56 minutes ago -
regarding april update and may update
by
heybengbeng
3 hours, 25 minutes ago -
MS Passkey
by
pmruzicka
9 minutes ago -
Can’t make Opera my default browser
by
bmeacham
11 hours, 5 minutes ago -
*Some settings are managed by your organization
by
rlowe44
22 minutes ago -
Formatting of “Forward”ed e-mails
by
Scott Mills
10 hours ago -
SmartSwitch PC Updates will only be supported through the MS Store Going Forward
by
PL1
1 day, 5 hours ago -
CISA warns of hackers targeting critical oil infrastructure
by
Nibbled To Death By Ducks
1 day, 14 hours ago -
AI slop
by
Susan Bradley
4 hours, 47 minutes ago -
Chrome : Using AI with Enhanced Protection mode
by
Alex5723
1 day, 15 hours ago -
Two blank icons
by
CR2
3 hours, 42 minutes ago -
Documents, Pictures, Desktop on OneDrive in Windows 11
by
ThePhoenix
2 days ago -
End of 10
by
Alex5723
2 days, 3 hours ago -
Single account cannot access printer’s automatic duplex functionality
by
Bruce
1 day, 1 hour ago -
test post
by
gtd12345
2 days, 9 hours ago -
Privacy and the Real ID
by
Susan Bradley
1 day, 23 hours ago -
MS-DEFCON 2: Deferring that upgrade
by
Susan Bradley
2 hours, 2 minutes ago -
Cant log on to oldergeeks.Com
by
WSJonharnew
2 days, 13 hours ago -
Upgrading from Win 10
by
WSjcgc50
1 day, 1 hour ago -
USB webcam / microphone missing after KB5050009 update
by
WSlloydkuhnle
1 day, 5 hours ago -
TeleMessage, a modified Signal clone used by US government has been hacked
by
Alex5723
3 days, 5 hours ago -
The story of Windows Longhorn
by
Cybertooth
2 days, 17 hours ago -
Red x next to folder on OneDrive iPadOS
by
dmt_3904
3 days, 7 hours ago -
Are manuals extinct?
by
Susan Bradley
7 hours, 54 minutes ago -
Canonical ditching Sudo for Rust Sudo -rs starting with Ubuntu
by
Alex5723
3 days, 16 hours ago -
Network Issue
by
Casey H
3 days, 3 hours ago -
Fedora Linux is now an official WSL distro
by
Alex5723
4 days, 4 hours ago -
May 2025 Office non-Security updates
by
PKCano
4 days, 5 hours ago -
Windows 10 filehistory including onedrive folder
by
Steve Bondy
4 days, 7 hours ago
Recent blog posts
Key Links
Want to Advertise in the free newsletter? How about a gift subscription in honor of a birthday? Send an email to sb@askwoody.com to ask how.
Mastodon profile for DefConPatch
Mastodon profile for AskWoody
Home • About • FAQ • Posts & Privacy • Forums • My Account
Register • Free Newsletter • Plus Membership • Gift Certificates • MS-DEFCON Alerts
Copyright ©2004-2025 by AskWoody Tech LLC. All Rights Reserved.