Could you not use a "pause for n" built in to the eep? Sincerely, Paul D.
SystemNets Inc. - President -----Original Message----- From: [email protected] [mailto:[email protected]] On Behalf Of Mike Byerley Sent: Tuesday, June 01, 2010 2:54 PM To: RBASE-L Mailing List Subject: [RBASE-L] - Re: outlook and rbase It is likely you are calling DLFree before the plugin is done with Outlook. Try using a button next to the one you execute the plugin to press when they are finished. Tell them to give it a few seconds before freeing and see if it is a timing issue. ----- Original Message ----- From: "Jim Belisle" <[email protected]> To: "RBASE-L Mailing List" <[email protected]> Sent: Tuesday, June 01, 2010 2:19 PM Subject: [RBASE-L] - Re: outlook and rbase 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

