LittleSmudge
Programmer
I have a client who still used Access97 ( Due to a compatibility issue with their client ) and I need to send a report as an email attachment which includes images of company log etc.
Using :-
DoCmd.SendObject acSendReport _
, "rptEmailLetterSingle", acFormatRTF _
, strAddress, , _
, strSubject & " in RTF Format" _
, strMessage
the images do not appear in the output
Trying :-
DoCmd.SendObject acSendReport _
, "rptEmailLetterSingle", acFormatSNP _
, strAddress, , _
, strSubject & " in SnapShot Format" _
, strMessage
the acFormatSNP fails to compile.
Am I missing a Reference or does A97 not support SnapShot.
Is there a pdf creator compatible with Access97 that I could include that will do what I need ?
G LS
Using :-
DoCmd.SendObject acSendReport _
, "rptEmailLetterSingle", acFormatRTF _
, strAddress, , _
, strSubject & " in RTF Format" _
, strMessage
the images do not appear in the output
Trying :-
DoCmd.SendObject acSendReport _
, "rptEmailLetterSingle", acFormatSNP _
, strAddress, , _
, strSubject & " in SnapShot Format" _
, strMessage
the acFormatSNP fails to compile.
Am I missing a Reference or does A97 not support SnapShot.
Is there a pdf creator compatible with Access97 that I could include that will do what I need ?
G LS