Mike,

I had t step out for a few hours.

Here is how I have things set up in a on key press EEP.

-- This is a PDF file already created in a specific location.
GETPROPERTY Comp_Specfile SHORTFILENAME 'vblfile'
LAUNCH .vblfile
-- Ask user if they want to email.
-- Prepare Required Parameters for MAPIMail3.RBL Plugin to Send E-Mail
SET VAR vpipe = '|'
SET VAR vto = 'TO:'
SET VAR vsubject = +
'Subject:Spec Sheet from Kay Park Recreation'
SET VAR vcc = ''
SET VAR vbcc = ''
SET VAR vbody TEXT = +
'Body:Here is your Spec Sheet from Kay Park Recreation. Thanks!'
SET VAR vattachments = ('Attachments:'+(.vtotpath))
SET VAR vsenddirect = 'SendDirect:TRUE'
SET VAR vparameters = +
(.vorder+.vdummy&.vpipe+.vto&.vpipe+.vsubject&.vpipe+.vcc&.vpipe+ +
.vbcc&.vpipe+.vbody&.vpipe+.vattachments&.vpipe+.vsenddirect)
CLS
PLUGINS mapimail3.rbl &vparameters
SET VAR vEmresult = (DLFree('mapimail3.rbl'))

LABEL done
-- clear all variables.
CLEAR VAR vorder, vdummy, vpipe, vto, vsubject, vcc, vbcc, vbody, +
vattachments, vEmresult, vtotpath, vChkSpec, vSenddirect, vblfile +
vsenddirect, vdialogmessage, vyesno, vendkey, vparameters, vtitle
RETURN

I have had my users mention to me the program "locks up" if they say yes
to do an email but realize they have no email address. They then hit the
cancel button and that is when it "locks up". 

Jim


Reply via email to