Microsoft Office Forums

Go Back   Microsoft Office Forums > >

Reply
 
Thread Tools Display Modes
  #1  
Old 11-14-2012, 11:59 PM
macropod's Avatar
macropod macropod is online now Command button - save in temp folder and send email with attachment Windows 7 64bit Command button - save in temp folder and send email with attachment Office 2010 32bit
Administrator
 
Join Date: Dec 2010
Location: Canberra, Australia
Posts: 22,520
macropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond repute
Default

Hi bigbird69,

Upon opening your document, I found that you've used ActiveX Controls, Formfields and a Content Control for data entry. You really should stick to just one kind - preferably Formfields or Content Controls.

If the document is to be used by people who don't have access to Word 2007 & later, you should only use Formfields. That, of course, rules out using the date picker.

Furthermore, if the user has a Mac with Office 2008, they won't have any macro support.



I'd also suggest that, rather than forcing the document to be saved to the user's TEMP folder, you give them the option of where to save.

The attached template uses formfields, plus a macro that intercepts the document close event to prompt the user to email it. As only a saved document can be emailed, the user is also given the option to save it.
Attached Files
File Type: zip New User.zip (16.2 KB, 77 views)
__________________
Cheers,
Paul Edstein
[Fmr MS MVP - Word]
Reply With Quote
  #2  
Old 11-15-2012, 12:22 AM
bigbird69 bigbird69 is offline Command button - save in temp folder and send email with attachment Windows 7 64bit Command button - save in temp folder and send email with attachment Office 2010 64bit
Novice
Command button - save in temp folder and send email with attachment
 
Join Date: Nov 2012
Posts: 8
bigbird69 is on a distinguished road
Default

hi macropod thanks for the help,

this document is going to be used for internal use only, the whole office is running office 2010 and windows 7.

i was going to give them the option, after much thought i have decided to keep these forms for future reference.

i have used the code you provided me previously. which is working great instead of the document saving to the temp folder it now saves on the shared drive.

one problem i have is the naming of the document.
it is saving the document under the username but im unsure how to get the document to save using the info that has been written in the ActiveX TextBox

The ActiveX TextBox i want grab the info from is named TextBox111
are you able to help? i have also copied the latest code i am using

regards matt


Code:
Private Sub CommandButton1_Click()
 
Dim OL As Object
Dim EmailItem As Object
Dim Doc As Document
Application.ScreenUpdating = False
Set OL = CreateObject("Outlook.Application")
Set EmailItem = OL.CreateItem(olMailItem)
Set Doc = ActiveDocument
Doc.SaveAs2 FileName:=("S:\DATA\InformationTech\Secured\New Staff") & "\" & Environ("username"), Fileformat:=wdFormatDocument, AddToRecentFiles:=True
With EmailItem
  .Subject = "New Employee"
  .Body = "" & vbCrLf & _
    "" & vbCrLf & _
    ""
  .To = "ITSupport@compnay.com.au"
  .Importance = olImportanceHigh
  .Attachments.Add Doc.FullName
  .Display
End With
Application.ScreenUpdating = True
Set Doc = Nothing
Set OL = Nothing
Set EmailItem = Nothing
 
End Sub
Attached Images
File Type: png textbox111.PNG (3.4 KB, 80 views)

Last edited by macropod; 11-15-2012 at 12:27 AM. Reason: Added code tags & formatting
Reply With Quote
Reply

Thread Tools
Display Modes


Similar Threads
Thread Thread Starter Forum Replies Last Post
Command button - save in temp folder and send email with attachment Command Button doesnt work on network rmw85 Word VBA 1 04-25-2012 01:02 PM
outlook 2003 always not remove temp copy of opened attachments in temporary folder c.itech Outlook 0 06-20-2011 10:34 PM
Command button - save in temp folder and send email with attachment email as pdf attachment - subject line and attachment named after mail merge Nexus Mail Merge 12 04-13-2011 11:34 PM
Command button - save in temp folder and send email with attachment Command Button cksm4 Word VBA 7 02-27-2011 08:47 PM
How can I save multiple email messages to a file folder? (crosspost) tupham Outlook 0 08-04-2008 07:56 PM

Other Forums: Access Forums

All times are GMT -7. The time now is 10:40 PM.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2025, vBulletin Solutions Inc.
Search Engine Optimisation provided by DragonByte SEO (Lite) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
MSOfficeForums.com is not affiliated with Microsoft