1. program launching

I would like to launch a program which opens a window for displaying stuff
while executing w/o having to click a 'start' button or some other user
intervention. I can't figure out how to do this? Can anyone offer
asuggestion?  ....thanks

george

new topic     » topic index » view message » categorize

2. Re: program launching

well, i guess i didn't explain it good enough. launching the program (win32
app) is done from another program and is not the problem. The problem is the
window opens but nothing will execute until an event ocurrs (like a
'continue' button being clicked).  I want the window to open and the program
begin to execute displaying stuff in the status bar without the user having
to do anything.

I can do this.....onClick[Continue] = routine_id("Main") .... but i would
like not to have any user action required.

george
----- Original Message -----
From: "rudy toews" <rltoews at ilos.net>
To: "EUforum" <EUforum at topica.com>
Subject: RE: program launching


>
>
> George Walters wrote:
> > I would like to launch a program which opens a window for displaying
> > stuff
> > while executing w/o having to click a 'start' button or some other user
> > intervention. I can't figure out how to do this? Can anyone offer
> > asuggestion?  ....thanks
> >
> > george
> >
> >
> >
>
> hi George
> dos programs would use the autoexec.bat to launch when computer is
> booted.
> windows would launch programs automatically when started if the shortcut
> is put into c:\windows\start menu\programs\startup
>
> maybe a timer program can launch them at different times.
> i have not played with the task manager to see if it can do that, sorry.
>
> rudy
>
> lotterywars
>
>
>
>

new topic     » goto parent     » topic index » view message » categorize

3. Re: program launching

On 31 May 2002, at 13:24, George Walters wrote:

> 
> I would like to launch a program which opens a window for displaying stuff
> while executing w/o having to click a 'start' button or some other user
> intervention. I can't figure out how to do this? Can anyone offer
> asuggestion?  ....thanks

Put a shortcut to ex.exw on the desktop, with parameters to run your code. 
Launch by clicking the same as any other program on the desktop. To 
change properties, right click on the desktop icon, select Properties, then 
select Shortcut, and on the Target line, enter the interpreter location, space, 
then your program name. Like this:

D:\Euphoria\BIN\EXW.EXE  D:\Euphoria\webgetter\SHEPHERD.EXW

Now, when i click on it, it runs. If i put just the 
D:\Euphoria\webgetter\SHEPHERD.EXW in the Target space, it opens in 
Textpad, which i use for editing. I can still edit it by right clicking and
sending
it to Textpad.

Kat

Kat

new topic     » goto parent     » topic index » view message » categorize

4. Re: program launching

----- Original Message -----
From: <a.tammer at hetnet.nl>

>Hi George,

>If you have a grasp of how Windows works, you could try Run / RunOnce  /
>RunServices / RunServicesOnce, which are >in
Windows-RegistersDatabases.
>Can't exactly remember where, maybe Derek could throw you the full path. Has to
>be something like HKey/LocalMachine/ >or
HKey/CurrentUser/ followed by some more sub-paths.
>It's where Windows stores tasks to launch at Startup. For the moment, my RefMan
>on Windows is with a >progammer/friend, and
he isn't home.

>Antoine

Maybe you'd be better off not responding to messages that you havent got a clue
about.
Just an insight!

Euman

new topic     » goto parent     » topic index » view message » categorize

5. Re: program launching

How about this?
procedure open_display_window()
    openWindow(Win2,Normal)
end procedure
onActivate[Win1] = routine_id("open_display_window")

George Walters wrote:

>
>well, i guess i didn't explain it good enough. launching the program (win32
>app) is done from another program and is not the problem. The problem is the
>window opens but nothing will execute until an event ocurrs (like a
>'continue' button being clicked).  I want the window to open and the program
>begin to execute displaying stuff in the status bar without the user having
>to do anything.
>
>I can do this.....onClick[Continue] = routine_id("Main") .... but i would
>like not to have any user action required.
>
>george
>----- Original Message -----
>From: "rudy toews" <rltoews at ilos.net>
>To: "EUforum" <EUforum at topica.com>
>Sent: Friday, May 31, 2002 1:45 PM
>Subject: RE: program launching
>
>
>>
>>George Walters wrote:
>>
>>>I would like to launch a program which opens a window for displaying
>>>stuff
>>>while executing w/o having to click a 'start' button or some other user
>>>intervention. I can't figure out how to do this? Can anyone offer
>>>asuggestion?  ....thanks
>>>
>>>george
>>>
>>>
>>>
>>hi George
>>dos programs would use the autoexec.bat to launch when computer is
>>booted.
>>windows would launch programs automatically when started if the shortcut
>>is put into c:\windows\start menu\programs\startup
>>
>>maybe a timer program can launch them at different times.
>>i have not played with the task manager to see if it can do that, sorry.
>>
>>rudy
>>
>>lotterywars
>>
>>
>>
>
>
>

new topic     » goto parent     » topic index » view message » categorize

6. Re: program launching

I beleive that would work.... I had looked in my 'book' and onActivate was
not in it. Looking in the Win32Full_lib.ew seems to indicate that is what it
is used for...

thanks..

george

----- Original Message -----
From: "Evan Marshall" <evan at net-link.net>
To: "EUforum" <EUforum at topica.com>
Subject: Re: program launching


>
> How about this?
> procedure open_display_window()
>     openWindow(Win2,Normal)
> end procedure
> onActivate[Win1] = routine_id("open_display_window")
>
> George Walters wrote:
>
> >
> >well, i guess i didn't explain it good enough. launching the program
(win32
> >app) is done from another program and is not the problem. The problem is
the
> >window opens but nothing will execute until an event ocurrs (like a
> >'continue' button being clicked).  I want the window to open and the
program
> >begin to execute displaying stuff in the status bar without the user
having
> >to do anything.
> >
> >I can do this.....onClick[Continue] = routine_id("Main") .... but i would
> >like not to have any user action required.
> >
> >george
> >----- Original Message -----
> >From: "rudy toews" <rltoews at ilos.net>
> >To: "EUforum" <EUforum at topica.com>
> >Sent: Friday, May 31, 2002 1:45 PM
> >Subject: RE: program launching
> >
> >
> >>
> >>George Walters wrote:
> >>
> >>>I would like to launch a program which opens a window for displaying
> >>>stuff
> >>>while executing w/o having to click a 'start' button or some other user
> >>>intervention. I can't figure out how to do this? Can anyone offer
> >>>asuggestion?  ....thanks
> >>>
> >>>george
> >>>
> >>>
> >>>
> >>hi George
> >>dos programs would use the autoexec.bat to launch when computer is
> >>booted.
> >>windows would launch programs automatically when started if the shortcut
> >>is put into c:\windows\start menu\programs\startup
> >>
> >>maybe a timer program can launch them at different times.
> >>i have not played with the task manager to see if it can do that, sorry.
> >>
> >>rudy
> >>
> >>lotterywars
> >>
> >>
> >>
>
>
>

new topic     » goto parent     » topic index » view message » categorize

7. Re: program launching

Interpreted question incorrect, Sorry.
Thought Windows-launching was meant.
Have you received my personal mail, Euman?

antoine tammer

new topic     » goto parent     » topic index » view message » categorize

8. Re: program launching

<html>
<head>
</head>
<body>
Glad to finally be able to answer instead of ask.<br>
<br>
George Walters wrote:<br>
<blockquote type="cite" cite="mid:0.1700008810.267209734-1463792382-1022874963
at topica.com">
<pre wrap="">How about this?<br>procedure open_display_window()<br>   
    openWindow(Win2,Normal)<br>end procedure<br>onActivate[Win1] =
    routine_id("open_display_window")<br><br>George Walters wrote:<br><br></pre>
    <blockquote type="cite">
<pre wrap="">well, i guess i didn't explain it good enough. launching the
      program<br></pre>
      </blockquote>
      </blockquote>
      <pre wrap=""><!---->(win32<br></pre>
      <blockquote type="cite">
        <blockquote type="cite">
<pre wrap="">app) is done from another program and is not the problem.
          The problem is<br></pre>
          </blockquote>
          </blockquote>
          <pre wrap=""><!---->the<br></pre>
          <blockquote type="cite">
            <blockquote type="cite">
<pre wrap="">window opens but nothing will execute until an event
              ocurrs (like a<br>'continue' button being clicked).  I want the window to open
              and the<br></pre>
              </blockquote>
              </blockquote>
              <pre wrap=""><!---->program<br></pre>
              <blockquote type="cite">
                <blockquote type="cite">
<pre wrap="">begin to execute displaying stuff in the status
                  bar without the user<br></pre>
                  </blockquote>
                  </blockquote>
                  <pre wrap=""><!---->having<br></pre>
                  <blockquote type="cite">
                    <blockquote type="cite">
<pre wrap="">to do anything.<br><br>I can do
                      this.....onClick[Continue] = routine_id("Main") .... but i would<br>like not to
                      have any user action required.<br><br>george<br>----- Original Message
                      -----<br>From: "rudy toews" <a class="moz-txt-link-rfc2396E" href="mailto:rltoews
                      at ilos.net">&lt;rltoews at ilos.net&gt;</a><br>To: "EUforum" <a
                      class="moz-txt-link-rfc2396E" href="mailto:EUforum at topica.com">&lt;EUforum at
                      topica.com&gt;</a><br>Sent: Friday, May 31, 2002 1:45 PM<br>Subject: RE: program
                      launching<br><br><br></pre>
                      <blockquote type="cite">
                        <pre wrap="">George Walters wrote:<br><br></pre>
                        <blockquote type="cite">
<pre wrap="">I would like to launch a program which
                          opens a window for displaying<br>stuff<br>while executing w/o having to click a
                          'start' button or some other user<br>intervention. I can't figure out how to do
                          this? Can anyone offer<br>asuggestion? 
                          ....thanks<br><br>george<br><br><br><br></pre>
                          </blockquote>
<pre wrap="">hi George<br>dos programs would use the
                          autoexec.bat to launch when computer is<br>booted.<br>windows would launch
                          programs automatically when started if the shortcut<br>is put into <a
                          class="moz-txt-link-freetext" href="c:\windows\start">c:\windows\start</a>
                          menu\programs\startup<br><br>maybe a timer program can launch them at different
                          times.<br>i have not played with the task manager to see if it can do that,
                          sorry.<br><br>rudy<br><br>lotterywars<br><br><br><br></pre>
                          </blockquote>
                          </blockquote>
                          <pre wrap=""><br><br></pre>
                          </blockquote>

new topic     » goto parent     » topic index » view message » categorize

Search



Quick Links

User menu

Not signed in.

Misc Menu