[REBOL] Re: Returning from calendar to parent script...

2002-04-22 Thread Anton
Use of launch is limited to one level. That is; a launched rebol program cannot launch another rebol program. If Ronald tried his program from the desktop, that has already been launched once already. From the console it hasn't, that's why there is a difference. Try this in the console:

[REBOL] Re: Returning from calendar to parent script...

2002-04-21 Thread Ronald Gruss
Hi Carl, Thank you very much, for your time and patience with me, it works very well now.:-)) I've added a small email sender (emailer.r) as well, after add of the /new refinement. I tested (as you adviced me to) the 'launch way, but got a dialog box telling me : Launch can only be used by

[REBOL] Re: Returning from calendar to parent script...

2002-04-21 Thread Carl Read
On 21-Apr-02, Ronald Gruss wrote: Hi Carl, Thank you very much, for your time and patience with me, it works very well now.:-)) I've added a small email sender (emailer.r) as well, after add of the /new refinement. I tested (as you adviced me to) the 'launch way, but got a dialog box

[REBOL] Re: Returning from calendar to parent script...

2002-04-21 Thread Carl Read
On 22-Apr-02, Brett Handley wrote: Comment dit-on en Anglais : 'Ma belle-mère ne viendra pas dîner à la maison ce week-end !' ? Réponse : 'YSSS !' :-)) Even after a visit to Babel Fish that's still lost in the translation. (: I think My mother-in-law is not coming

[REBOL] Re: Returning from calendar to parent script...

2002-04-20 Thread Ronald Gruss
Hi Carl, Friday, April 19, 2002, 11:25:02 AM, vous avez écrit: CR On 19-Apr-02, Ronald Gruss wrote: Hi Rebolers, How could I 'do the calendar.r script from within another script and return to this parent script after closing 'calendar ? CR I'm not sure what the calendar.r script is, but

[REBOL] Re: Returning from calendar to parent script...

2002-04-20 Thread Carl Read
On 21-Apr-02, Ronald Gruss wrote: Hi Carl, Friday, April 19, 2002, 11:25:02 AM, vous avez écrit: On 19-Apr-02, Ronald Gruss wrote: Hi Rebolers, How could I 'do the calendar.r script from within another script and return to this parent script after closing 'calendar ? I'm not sure

[REBOL] Re: Returning from calendar to parent script...

2002-04-19 Thread Carl Read
On 19-Apr-02, Ronald Gruss wrote: Hi Rebolers, How could I 'do the calendar.r script from within another script and return to this parent script after closing 'calendar ? I'm not sure what the calendar.r script is, but you can just do another script from within a REBOL script and when the

[REBOL] Re: Returning from calendar to parent script...

2002-04-19 Thread Ronald Gruss
Hi Carl, Friday, April 19, 2002, 11:25:02 AM, vous avez écrit: CR On 19-Apr-02, Ronald Gruss wrote: Hi Rebolers, How could I 'do the calendar.r script from within another script and return to this parent script after closing 'calendar ? CR I'm not sure what the calendar.r script is, but

[REBOL] Re: Returning from calendar to parent script...

2002-04-19 Thread Anton
You could try something like this: view lay: layout [ button [ ; simulate do %calendar.r view center-face layout [field] wait none view lay