N
Niklas Östergren
Hi!
Is there a function in Access 2003 which I can use to search for a sign (ex.
semicolon)?
I´m about to create a code modul for sending e-mails using Microsoft Outlook
and one of the parameters that one procedure will get from the procedure
that calls this <CreateOlEmailMsg> is a string of path to one or several
files to be attached to this mail msg. This is, offcource, optional so the
user can choose if to attache files or not.
I havné done this before so if there might be a better way pleas let me
know. This is what I´m thinking of right now:
The variable (strAttmentsPath) will get a string like this:
strAttmentsPath = "C:\report.txt ; C:\BcBtRmv.log"
What I´d like to do is to seperate these path so I could add attachement so
I´d get this result:
.Attachments.Add "C:\report.txt"
.Attachments.Add "C:\BcBtRmv.log"
The thing that I have never done and don´t know how to solve here is to
seperate string strAttmentsPath?
Any help is apprechiated!
TIA!
// Niklas
Is there a function in Access 2003 which I can use to search for a sign (ex.
semicolon)?
I´m about to create a code modul for sending e-mails using Microsoft Outlook
and one of the parameters that one procedure will get from the procedure
that calls this <CreateOlEmailMsg> is a string of path to one or several
files to be attached to this mail msg. This is, offcource, optional so the
user can choose if to attache files or not.
I havné done this before so if there might be a better way pleas let me
know. This is what I´m thinking of right now:
The variable (strAttmentsPath) will get a string like this:
strAttmentsPath = "C:\report.txt ; C:\BcBtRmv.log"
What I´d like to do is to seperate these path so I could add attachement so
I´d get this result:
.Attachments.Add "C:\report.txt"
.Attachments.Add "C:\BcBtRmv.log"
The thing that I have never done and don´t know how to solve here is to
seperate string strAttmentsPath?
Any help is apprechiated!
TIA!
// Niklas