Have you tried Pause for n ?
I do not believe it pops up any dialog.

Dennis McGrath

-----Original Message-----
From: [email protected] [mailto:[email protected]] On Behalf Of Jim Belisle
Sent: Tuesday, June 01, 2010 3:25 PM
To: RBASE-L Mailing List
Subject: [RBASE-L] - Re: outlook and rbase

Paul,

If I use the Pause for n, what code would I add so the button does not
show?
That way they have to wait.

Jim

-----Original Message-----
From: [email protected] [mailto:[email protected]] On Behalf Of Paul
InterlockInfo
Sent: Tuesday, June 01, 2010 2:26 PM
To: RBASE-L Mailing List
Subject: [RBASE-L] - Re: outlook and rbase

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


Reply via email to