Now that I understand the closewindow command doesn't work until the eep is finished (my brain tells me that each command is performed BEFORE the next command) I realize I will have to do something like you outlined below. Thanks for the input.
Dan
At 09:59 AM 8/18/2004, you wrote:
Dan
You can't do what you're trying to do this way!
What you want, if I understand you, is to be in form A, click a button, do come calcs, and then bring up the form again with refreshed / change rows.
In 6.5++, since you don't have the property command to refresh the rows, do it this way
Button eep: SET VAR vRecalc = 'Yes' CLOSEWINDOW RETURN
Program code: Set var vRecalc TEXT = 'No' LABEL RecalcTab edit USING frdrillmain1 at 1,1,780,560
IF vRecalc = 'Yes' THEN --Code to refresh the rows GOTO TO frdrillmain1 ENDIF
David Blocker [EMAIL PROTECTED] 781-784-1919 Fax: 781-784-1860 Cell: 339-206-0261 ----- Original Message ----- From: "Dan Champion" <[EMAIL PROTECTED]> To: "RBASE-L Mailing List" <[EMAIL PROTECTED]> Sent: Wednesday, August 18, 2004 9:30 AM Subject: [RBASE-L] - Re: Closewindow Question - Razzak's Reply
> I have tried it with both > Closewindow > and > Closewindow alias... > > However the Return isn't next after the command, I open a new instance of > the form after the command. Is this the problem? > > > At 09:10 AM 8/18/2004, you wrote: > >CLOSEWINDOW command in an EEP will close the current form. > > > >CLOSEWINDOW formname in an EEP will close the "alias" form > >name, when used as MDI. > > > >Also make sure to use RETURN after using the CLOSEWINDOW > >command in an EEP. > > > > Dan Champion > www.championsolutions.net > 616-299-7420 > >
Dan Champion
www.championsolutions.net
616-299-7420

