|
-
Jan 16th, 2007, 09:34 AM
#1
Thread Starter
Lively Member
manage attch file in outlook
hi
i want to do a rule that when i recive a file from someone name x
it will activate a code that will copy the file that is attch and put it in a folder name y in c:
what is the code for it ?
maybe i will do it in macro? but how can i activated the macro automaticly
tnks in advanced
-
Jan 16th, 2007, 11:22 AM
#2
Re: manage attch file in outlook
If you write some VBA code and monitor the item send event you can then copy the message and move it to where ever you want.
VB Code:
'Outlook 2002 and earlier
Private Sub Application_NewMail()
End Sub
VB Code:
'Outlook 2003 and 2007
Private Sub Application_NewMailEx(ByVal EntryIDCollection As String)
End Sub
VB/Office Guru™ (AKA: Gangsta Yoda™ ®)
I dont answer coding questions via PM. Please post a thread in the appropriate forum. 
Microsoft MVP 2006-2011
Office Development FAQ (C#, VB.NET, VB 6, VBA)
Senior Jedi Software Engineer MCP (VB 6 & .NET), BSEE, CET
If a post has helped you then Please Rate it! 
• Reps & Rating Posts • VS.NET on Vista • Multiple .NET Framework Versions • Office Primary Interop Assemblies • VB/Office Guru™ Word SpellChecker™.NET • VB/Office Guru™ Word SpellChecker™ VB6 • VB.NET Attributes Ex. • Outlook Global Address List • API Viewer utility • .NET API Viewer Utility •
System: Intel i7 6850K, Geforce GTX1060, Samsung M.2 1 TB & SATA 500 GB, 32 GBs DDR4 3300 Quad Channel RAM, 2 Viewsonic 24" LCDs, Windows 10, Office 2016, VS 2019, VB6 SP6 
-
Jan 17th, 2007, 04:15 AM
#3
Thread Starter
Lively Member
Re: manage attch file in outlook
hi
tnks for the replay
but i dont understand quit how to do it?
i am new in this area
can i do it in a macro that will activate automaticly when i recive the attch it will copy it to a folder?
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|