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, 2 months 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
-
Meta and Yandex secretly tracked billions of Android users
by
Alex5723
58 minutes ago -
MS-DEFCON 2: Do you need that update?
by
Susan Bradley
1 hour, 6 minutes ago -
What Terminal Is Southwest at Austin Airport? Find Complete AUS Terminal Info (Awaiting moderation)
by
airlinesterminaloffice1
2 hours, 4 minutes ago -
What Terminal Is Southwest at Austin Airport? Find Complete AUS Terminal Info (Awaiting moderation)
by
airlinesterminaloffice1
2 hours, 8 minutes ago -
CD/DVD drive is no longer recognized
by
WSCape Sand
12 hours, 27 minutes ago -
Windows 11 24H2 Default Apps stuck on Edge and Adobe Photoshop
by
MikeBravo
15 hours, 16 minutes ago -
North Face and Cartier customer data stolen in cyber attacks
by
Alex5723
13 hours, 22 minutes ago -
What is wrong with simple approach?
by
WSSpoke36
5 hours, 54 minutes ago -
Microsoft-Backed Builder.ai Set for Bankruptcy After Cash Seized
by
Alex5723
1 day ago -
Location, location, location
by
Susan Bradley
2 hours, 28 minutes ago -
Cannot get a task to run a restore point
by
CWBillow
1 day, 2 hours ago -
Frustrating search behavior with Outlook
by
MrJimPhelps
16 hours, 56 minutes ago -
June 2025 Office non-Security Updates
by
PKCano
1 day, 12 hours ago -
Secure Boot Update Fails after KB5058405 Installed
by
SteveIT
9 hours, 22 minutes ago -
Firefox Red Panda Fun Stuff
by
Lars220
1 day, 12 hours ago -
How start headers and page numbers on page 3?
by
Davidhs
1 day, 23 hours ago -
Attack on LexisNexis Risk Solutions exposes data on 300k +
by
Nibbled To Death By Ducks
1 day, 2 hours ago -
Windows 11 Insider Preview build 26200.5622 released to DEV
by
joep517
2 days, 7 hours ago -
Windows 11 Insider Preview build 26120.4230 (24H2) released to BETA
by
joep517
2 days, 8 hours ago -
MS Excel 2019 Now Prompts to Back Up With OneDrive
by
lmacri
1 day, 21 hours ago -
Firefox 139
by
Charlie
1 day, 14 hours ago -
Who knows what?
by
Will Fastie
16 hours, 40 minutes ago -
My top ten underappreciated features in Office
by
Peter Deegan
2 days, 8 hours ago -
WAU Manager — It’s your computer, you are in charge!
by
Deanna McElveen
2 hours, 19 minutes ago -
Misbehaving devices
by
Susan Bradley
1 day, 4 hours ago -
.NET 8.0 Desktop Runtime (v8.0.16) – Windows x86 Installer
by
WSmeyerbos
3 days, 14 hours ago -
Neowin poll : What do you plan to do on Windows 10 EOS
by
Alex5723
13 hours, 32 minutes ago -
May 31, 2025—KB5062170 (OS Builds 22621.5415 and 22631.5415 Out-of-band
by
Alex5723
3 days, 13 hours ago -
Discover the Best AI Tools for Everything
by
Alex5723
2 days, 12 hours ago -
Edge Seems To Be Gaining Weight
by
bbearren
3 days, 3 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.