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?
![]() |
There are isolated problems with current patches, but they are well-known and documented on this site. |
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
-
Office gets current release
by
Susan Bradley
2 hours, 11 minutes ago -
FBI: Still Using One of These Old Routers? It’s Vulnerable to Hackers
by
Alex5723
18 hours, 43 minutes ago -
Windows AI Local Only no NPU required!
by
RetiredGeek
3 hours, 14 minutes ago -
Stop the OneDrive defaults
by
CWBillow
19 hours, 32 minutes ago -
Windows 11 Insider Preview build 27868 released to Canary
by
joep517
1 day, 5 hours ago -
X Suspends Encrypted DMs
by
Alex5723
1 day, 7 hours ago -
WSJ : My Robot and Me AI generated movie
by
Alex5723
1 day, 7 hours ago -
Botnet hacks 9,000+ ASUS routers to add persistent SSH backdoor
by
Alex5723
1 day, 8 hours ago -
OpenAI model sabotages shutdown code
by
Cybertooth
1 day, 9 hours ago -
Backup and access old e-mails after company e-mail address is terminated
by
M W Leijendekker
21 hours, 22 minutes ago -
Enabling Secureboot
by
ITguy
1 day, 4 hours ago -
Windows hosting exposes additional bugs
by
Susan Bradley
1 day, 17 hours ago -
No more rounded corners??
by
CWBillow
1 day, 12 hours ago -
Android 15 and IPV6
by
Win7and10
1 day, 2 hours ago -
KB5058405 might fail to install with recovery error 0xc0000098 in ACPI.sys
by
Susan Bradley
2 days, 5 hours ago -
T-Mobile’s T-Life App has a “Screen Recording Tool” Turned on
by
Alex5723
2 days, 8 hours ago -
Windows 11 Insider Preview Build 26100.4202 (24H2) released to Release Preview
by
joep517
2 days, 2 hours ago -
Windows Update orchestration platform to update all software
by
Alex5723
2 days, 15 hours ago -
May preview updates
by
Susan Bradley
2 days, 2 hours ago -
Microsoft releases KB5061977 Windows 11 24H2, Server 2025 emergency out of band
by
Alex5723
1 day, 18 hours ago -
Just got this pop-up page while browsing
by
Alex5723
2 days, 7 hours ago -
KB5058379 / KB 5061768 Failures
by
crown
2 days, 4 hours ago -
Windows 10 23H2 Good to Update to ?
by
jkitc
1 day, 6 hours ago -
At last – installation of 24H2
by
Botswana12
3 days, 7 hours ago -
MS-DEFCON 4: As good as it gets
by
Susan Bradley
4 hours, 43 minutes ago -
RyTuneX optimize Windows 10/11 tool
by
Alex5723
3 days, 19 hours ago -
Can I just update from Win11 22H2 to 23H2?
by
Dave Easley
1 day, 17 hours ago -
Limited account permission error related to Windows Update
by
gtd12345
4 days, 8 hours ago -
Another test post
by
gtd12345
4 days, 8 hours ago -
Connect to someone else computer
by
wadeer
10 hours, 3 minutes 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.