Board index » delphi » Form less Client Server Apps ???

Form less Client Server Apps ???

Hi,

Does anyone know or have an example of a very simple Client/Server App
completely formless ???

I want to code a client server app round 50KB, but with forms and VCL I
always get round 200/300KB... ;-(

Than-x befor hand, Jonathan

--
"I Don't Want To Achieve Immortallity Through My Work,
 I Want To Achieve It By Not Dying ! ! !"

 

Re:Form less Client Server Apps ???


look up the XCL and similar libraries that replace the VCL.. a bit of a
pain, but you get small executables.

Otherwise.. sure you can do it.. you just have to create any database things
manually. problem is... you'll end up back where you started, the db stuff
is also pretty big... unless you write your own objects to handle the
database conncetions. OR, you pull parts from the FreePascal libraries.

Mike

Quote
Jonathan Lourens <jonat...@ia.comweb.nl> wrote in message

news:3AEC0514.E3AEE529@ia.comweb.nl...
Quote
> Hi,

> Does anyone know or have an example of a very simple Client/Server App
> completely formless ???

> I want to code a client server app round 50KB, but with forms and VCL I
> always get round 200/300KB... ;-(

> Than-x befor hand, Jonathan

> --
> "I Don't Want To Achieve Immortallity Through My Work,
>  I Want To Achieve It By Not Dying ! ! !"

Re:Form less Client Server Apps ???


jonat...@ia.comweb.nl (Jonathan Lourens) wrote in <3AEC0514.E3AEE529
@ia.comweb.nl>:

Quote
>Does anyone know or have an example of a very simple Client/Server App
>completely formless ???

Indy does not link in the forms unit, so wtih Indy its easy. The easiest way
is to make a new app, remove the main form, remove forms from the dpr, then
create a new DM. Now put your Indy comps on the DM.

--
Chad Z. Hower (Kudzu) - Church Hill, TN - Team Indy
      "Programming is an art form that fights back"
Forget the Y2K problem, Lets fix the W2K problem.
http://www.pbe.com/Kudzu/ - Free Delphi/CBuilder components and articles

Re:Form less Client Server Apps ???


oops, I was thinking databse client/server not TCP, my bad

Mike

Father - Mike Johnson <father...@bigattichouse.spam.com> wrote in message
news:3aec2bd5_2@dnews...

Quote
> look up the XCL and similar libraries that replace the VCL.. a bit of a
> pain, but you get small executables.

> Otherwise.. sure you can do it.. you just have to create any database
things
> manually. problem is... you'll end up back where you started, the db stuff
> is also pretty big... unless you write your own objects to handle the
> database conncetions. OR, you pull parts from the FreePascal libraries.

> Mike

> Jonathan Lourens <jonat...@ia.comweb.nl> wrote in message
> news:3AEC0514.E3AEE529@ia.comweb.nl...
> > Hi,

> > Does anyone know or have an example of a very simple Client/Server App
> > completely formless ???

> > I want to code a client server app round 50KB, but with forms and VCL I
> > always get round 200/300KB... ;-(

> > Than-x befor hand, Jonathan

> > --
> > "I Don't Want To Achieve Immortallity Through My Work,
> >  I Want To Achieve It By Not Dying ! ! !"

Other Threads