1. RE: Creating a Menu using tab
If I run a program from another program using shellExecute, then run
another program from that, etc., etc, won't I run out of memory sooner
or later? Is there a way to run a program from another program that
doesn't use shell and that will not take you back to the first program
when you close the second program. Or is that necesary?
Derek Parnell wrote:
> ----- Original Message -----
> From: "C. K. Lester" <euphoric at cklester.com>
> To: <EUforum at topica.com>
> Subject: Re: Creating a Menu using tab
>
>
> > Don, you need to stop using Incredimail or send your mail text-only. I'm
> > getting a bright green background and your text is in a very narrow
> > table
> >
> > so it all
> > comes out
> > looking
> > like this.
> >
> > Please! :)
> >
> > Thanks.
>
> I'm using Outlook Express and that client couldn't even render Don's
> email so all I saw was a blank email! So I'm glad you posted his message
> below.
>
> > ----- Original Message -----
> > From: "Don Austin" <dgaustin at mchsi.com>
> > To: <EUforum at topica.com>
> > Sent: Thursday, October 23, 2003 8:14 AM
> > Subject: Creating a Menu using tab
> >
> >
> > > I down loaded the Euphoria package 4 days ago, so I'am very green.=0D
> > > I'am trying to create a "main menu" program using tab that will execute
> > > other programs.=0D
> > > I modifiied some code Ifound in "EX05,EXW" to the procedure below=0D
> > > =0D
> > > =0D
> > > global procedure onClick_MakeTable(integer self, integer event, sequence
> > > parms)=0D
> > > shellExecute("open","work.exw",SW_NORMAL)=0D
> > > end procedure =0D
> > > =0D
> > > This works.=0D
> > > QUESTION:=0D
> > > =0D
> > > Is there a way to execute a procedure by clicking on a tab??=0D
> > > =0D
> > > Thanks for any help.
>
> What do you mean by 'tab'? Do you mean a TabItem control? If so, the
> w32HClick event is invoked after a tabitem is selected.
>
> --
> Derek
>
>
2. RE: Creating a Menu using tab
Running a program using shellExecute is not much different than
double-clicking an icon to run a program... You can launch one program
from another and close the first, leaving the second program running in
it's own memory space.
-- Brian
Ron Austin wrote:
> If I run a program from another program using shellExecute, then run
> another program from that, etc., etc, won't I run out of memory sooner
> or later? Is there a way to run a program from another program that
> doesn't use shell and that will not take you back to the first program
> when you close the second program. Or is that necesary?