1. RE: Eu For Win & console app launching
Nope, I have not even started to code on this. I wanted to get this outa
the way before i started. Where can i get info on using shellexecuteex?
I have no clue how to wrap correctly, I always get tons of problems when
i try on my own.
pampeano at ROCKETMAIL.COM wrote:
> Have you tried using ShellExecuteEx from the windows API ? It's wrapped
> in win32lib, and it's very easy to wrap if you're not using that lib.
>
> Best regards,
> Guillermo Bonvehí
>
> --- Grape Vine <g__vine at hotmail.com> wrote:
> >
> >
> >
> > I have a email app called Blat, I want to make a gui for it. Tho i
> > cant
> > seam to launch a console app in anyway with out a console coming
> > up(yea,
> > i know how that sounds). Is there a way to make a Eu GUI for a
> > console
> > app and not have a console pop up?
> >
> >
> > Grape Vine
> > 13728824
> >
> >
> >
> >
>
>
>
Grape Vine
13728824
2. RE: Eu For Win & console app launching
I dont even know where to begin
jjnick at cvn.com wrote:
> I just finished my project today (at least it's in Beta now) using my
> version of win32lib's shellExecuteEx . . . I have delved in all the API
> calls to call ShellExecute, ShellExecuteEx, and CreateProcess, and even
> Euphoria's shell() & shell_exec(). Had all kinds of console and Windows
> 2000 issues to work out. Let me know if you need help . . .
>
Grape Vine
13728824
3. RE: Eu For Win & console app launching
If you're refering to start wrapping the function, I suggest you
getting the dllsetup.e file made by Colin Taylor, it helps you to wrap
functions, I got a lot of function wrapped by this prog.
Do you have the win32api reference? (win32.hlp) it's a good start to
look at functions of the api, which parameters they take and which dll
you have to open to get the routine.
Best Regards,
Guillermo Bonvehí
--- Grape Vine <g__vine at hotmail.com> wrote:
>
>
> I dont even know where to begin
>
>
> jjnick at cvn.com wrote:
> > I just finished my project today (at least it's in Beta now) using
> my
> > version of win32lib's shellExecuteEx . . . I have delved in all
> the API
> > calls to call ShellExecute, ShellExecuteEx, and CreateProcess, and
> even
> > Euphoria's shell() & shell_exec(). Had all kinds of console and
> Windows
> > 2000 issues to work out. Let me know if you need help . . .
> >
>
>
>
> Grape Vine
> 13728824
>
>
>
>
4. RE: Eu For Win & console app launching
I had them, not sure if i do after my drive crash
Thing is i dont know C very well, i tried wrapping dll's before(icq)
and had lots a trouble. I jsut want a quick easy function/routine like
calldosapp("apppath/appname","cmd","cmd")
and be done with it, tho...
pampeano at ROCKETMAIL.COM wrote:
> If you're refering to start wrapping the function, I suggest you
> getting the dllsetup.e file made by Colin Taylor, it helps you to wrap
> functions, I got a lot of function wrapped by this prog.
> Do you have the win32api reference? (win32.hlp) it's a good start to
> look at functions of the api, which parameters they take and which dll
> you have to open to get the routine.
>
> Best Regards,
> Guillermo Bonvehí
>
> --- Grape Vine <g__vine at hotmail.com> wrote:
> >
> >
> > I dont even know where to begin
> >
> >
> > jjnick at cvn.com wrote:
> > > I just finished my project today (at least it's in Beta now) using
> > my
> > > version of win32lib's shellExecuteEx . . . I have delved in all
> > the API
> > > calls to call ShellExecute, ShellExecuteEx, and CreateProcess, and
> > even
> > > Euphoria's shell() & shell_exec(). Had all kinds of console and
> > Windows
> > > 2000 issues to work out. Let me know if you need help . . .
> > >
> >
> >
> >
> > Grape Vine
> > 13728824
> >
> >
> >
> >
>
>
>
Grape Vine
13728824
5. RE: Eu For Win & console app launching
It would be nice to have it. If you dont mind sharing. I have no prob
sharing what i do with it.
jjnick at cvn.com wrote:
> win32lib's shellExecuteEx() is as simple as that. The only kink is that
> it
> doesn't close the dos app once it's finished. I have all the code to do
> this if you need it . . .
>
> ----- Original Message -----
> From: "Grape Vine" <g__vine at hotmail.com>
> To: "EUforum" <EUforum at topica.com>
> Sent: Sunday, June 03, 2001 10:41 AM
> Subject: RE: Eu For Win & console app launching
>
>
> >
> > I had them, not sure if i do after my drive crash
> > Thing is i dont know C very well, i tried wrapping dll's before(icq)
> > and had lots a trouble. I jsut want a quick easy function/routine like
> > calldosapp("apppath/appname","cmd","cmd")
> > and be done with it, tho...
> >
> >
> > pampeano at ROCKETMAIL.COM wrote:
> > > If you're refering to start wrapping the function, I suggest you
> > > getting the dllsetup.e file made by Colin Taylor, it helps you to wrap
> > > functions, I got a lot of function wrapped by this prog.
> > > Do you have the win32api reference? (win32.hlp) it's a good start to
> > > look at functions of the api, which parameters they take and which dll
> > > you have to open to get the routine.
> > >
> > > Best Regards,
> > > Guillermo Bonvehí
> > >
> > > --- Grape Vine <g__vine at hotmail.com> wrote:
> > > >
> > > >
> > > > I dont even know where to begin
> > > >
> > > >
> > > > jjnick at cvn.com wrote:
> > > > > I just finished my project today (at least it's in Beta now) using
> > > > my
> > > > > version of win32lib's shellExecuteEx . . . I have delved in all
> > > > the API
> > > > > calls to call ShellExecute, ShellExecuteEx, and CreateProcess, and
> > > > even
> > > > > Euphoria's shell() & shell_exec(). Had all kinds of console and
> > > > Windows
> > > > > 2000 issues to work out. Let me know if you need help . . .
> > > > >
> > > >
> > > >
> > > >
> > > > Grape Vine
> > > > 13728824
> > > >
> > > >
> > > >
> > > >
> > >
> > >
> > >
<snip>
Grape Vine
13728824
6. RE: Eu For Win & console app launching
jjnick at cvn.com wrote:
> Here it is, but remember, the Euphoria and win32lib libraries of shell
> functions work just fine except for the Windows 2000, e.g., calling
> Euphoria's system() under Windows 2000 doesn't wait for the process to
> finish, system_exec() works but doesn't close the console window, same
> thing
> with win32lib's shellExecuteEx(). Here is the code to take care of this
> . .
> .
Eh, Where?
Grape Vine
13728824
7. RE: Eu For Win & console app launching
I dont use the email options, only the web options.