Re: [fpc-pascal]How to set focus to graph window?

2003-03-13 Thread Florian Klaempfl
Bernhard Steffen wrote: I'm using the graph unit to provide graphing capabilities for my program (Win 32 platform). The graph window opens as a separate window, which is ok for me - except one point: The graph window gets opened with the least important position in Z-order (ie: all other windows ar

RE: [fpc-pascal]How to set focus to graph window?

2003-03-13 Thread Matt D. Emson
> > Is there a way to set the focus to the freshly opened graph window > > from within my program? (eg: open a graph window and define this as > > the foremost window, in front even of the opening program) > > > > Any help appreciated, thanks in advance > > Hmmm, I wrote the graph unit for wi

[fpc-pascal]FPC for a middleware application

2003-03-13 Thread Jilani Khaldi
Hi All, I am looking for some code in FP to develope a client/server (3-tier) application (I need only the middleware part), could someone point me? Thanks! jk ___ fpc-pascal maillist - [EMAIL PROTECTED] http://lists.freepascal.org/mailman/listinf

Re: [fpc-pascal]How to set focus to graph window?

2003-03-13 Thread Marco van de Voort
> > > Is there a way to set the focus to the freshly opened graph window > > > from within my program? (eg: open a graph window and define this as > > > the foremost window, in front even of the opening program) > > > > > > Any help appreciated, thanks in advance > > > > Hmmm, I wrote the graph

RE: [fpc-pascal]FPC for a middleware application

2003-03-13 Thread Matt Emson
If the indy components compile under FPC, they could be used. Take a look at : http://www.indyproject.org/Articles.html I have a 3 tier system I'm writing in Delphi currently. Client Tier connects to Server Tier with the data stored in an interbase server. All 3 items can be distributed onto separ

Re: [fpc-pascal]FPC for a middleware application

2003-03-13 Thread Michael . VanCanneyt
On Thu, 13 Mar 2003, Jilani Khaldi wrote: > Hi All, > I am looking for some code in FP to develope a client/server (3-tier) application (I > need only the middleware > part), could someone point me? Sebastian Guenther is working on fpXML-RPC: This is functional, and can be used for 3 tier prog

Re: [fpc-pascal]How to set focus to graph window?

2003-03-13 Thread Bernhard Steffen
Thanks, Florian and Matt, for your help. I used Matt's approach to bring the window to the top (works), thus avoiding the need to change the original sources. And, I can print some additional information for the user before opening the graph window (I have a wrapper function for InitGraph, anyway)

Re: [fpc-pascal]How to set focus to graph window?

2003-03-13 Thread Thomas Schatzl
Hi, although others have already pointed out a few solutions, here're my two cents... > I'm using the graph unit to provide graphing capabilities for my program > (Win 32 platform). The graph window opens as a separate window, which is > ok for me - except one point: The graph window gets opene

Re: RE: [fpc-pascal]FPC for a middleware application

2003-03-13 Thread Jilani Khaldi
>If the indy components compile under FPC, they could be used. Take a >look at : http://www.indyproject.org/Articles.html > >I have a 3 tier system I'm writing in Delphi currently. Client Tier >connects to Server Tier with the data stored in an interbase server. All >3 items can be distributed onto

Re: RE: [fpc-pascal]FPC for a middleware application

2003-03-13 Thread Anton Tichawa
On Thursday 13 March 2003 21:20, you wrote: > >If the indy components compile under FPC, they could be used. Take a > >look at : http://www.indyproject.org/Articles.html > > > >I have a 3 tier system I'm writing in Delphi currently. Client Tier > >connects to Server Tier with the data stored in an

Re: RE: [fpc-pascal]FPC for a middleware application

2003-03-13 Thread Marco van de Voort
> > >connects to Server Tier with the data stored in an interbase server. All > > >3 items can be distributed onto separate servers/desktops. It's been > > >fairly painless with Indy so far. Hardest part was the transport > > >protocol between the client and server. Then again this *is* all in > >

Re: [fpc-pascal]How to set focus to graph window?

2003-03-13 Thread Bernhard Steffen
Thanks for the link, but that's not the case for me. My program is partly text-based and partly graph-based, so it's no "dummy" dos window for me... But I found a solution that works for me, thanks anyone for your input. Bernhard Marco van de Voort schrieb: > Or is he searching for a way to do >