Path: csiph.com!x330-a1.tempe.blueboxinc.net!usenet.pasdenom.info!aioe.org!.POSTED!not-for-mail From: ralph Newsgroups: comp.lang.basic.visual.misc Subject: Re: Script or software to run a GUI based application Date: Sat, 28 May 2011 15:00:34 -0500 Organization: Aioe.org NNTP Server Lines: 29 Message-ID: References: <8ccd82cf-1753-4013-aab5-3c548b396e5c@j13g2000pro.googlegroups.com> <72b4c9e7-d17f-41db-94b6-1161bdf37daa@g28g2000yqa.googlegroups.com> NNTP-Posting-Host: 1CH/HEDrktYTGBgSe/HBgw.user.speranza.aioe.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Complaints-To: abuse@aioe.org X-Notice: Filtered by postfilter v. 0.8.2 X-Newsreader: Forte Agent 6.00/32.1186 Xref: x330-a1.tempe.blueboxinc.net comp.lang.basic.visual.misc:200 On Sat, 28 May 2011 05:31:06 -0700 (PDT), Stefan Mueller wrote: >> For instance, it could open a UDP socket listening on a >> certain port for your commands. Your client (at whatever >> location you are at) would then send some simple command to >> the 'server' that tells it what to fill in in the text box, >> and it pushes the button, etc. When the function is complete, >> the 'server' sends back some type of msg over UDP saying it's >> done. > >Yes, I have a network connection but my problem is that a software >with a GUI won't start if nobody is connected to the server (console >or remote desktop session). Or am I wrong? I believe that is substantially correct. Even if you could, I doubt you would want to. Check out the problems that can occur if a service is run that speaks/messages out to a GUI and there is no current Desktop. The best solution appears to be to re-write your application as an ActiveX Exe thus providing an Automation interface, or as a 'service' DLL, or a straight service. The latter two could form the engine or guts for your GUI application which would become simply another client. -ralph