Board index » delphi » How to convert 16-bit programs to 32-bit ones

How to convert 16-bit programs to 32-bit ones

Hi, everyone:

   Would anybody be please tell me how to convert 16-bit programs into
   32-bit ones.

   Thanks!!

   LHT

 

Re:How to convert 16-bit programs to 32-bit ones


Get the source code and compile it with a 32bit compiler.

--
Christo Crause
Institute for Thermal Separations Research
Dept. Chem. Eng.
University of Stellenbosch
South Africa

Quote
pigiron <pigi...@ms21.hinet.net> wrote in message

news:381070FD.E124E656@ms21.hinet.net...
Quote
> Hi, everyone:

>    Would anybody be please tell me how to convert 16-bit programs into
>    32-bit ones.

>    Thanks!!

>    LHT

Re:How to convert 16-bit programs to 32-bit ones


Quote
pigiron wrote:

> Hi, everyone:

>    Would anybody be please tell me how to convert 16-bit programs into
>    32-bit ones.

>    Thanks!!

>    LHT

It would be easier to answer your question if you explain your problem
more detailed. But generally spoken it should not be too difficult to
port a Delphi1 program to 32bit if you dont use special tricks
(accessing the bios etc.).

Alex

--
Author of the free Chatsystem PINO!
Available at http://pino.cjb.net

Re:How to convert 16-bit programs to 32-bit ones


One thing to watch out for, though, is the difference in the size of an
integer (2 bytes vs 4 bytes).

Quote
Alexander Mueller <al...@gmx.at> wrote in message

news:3810B75A.E47E9AF9@gmx.at...
Quote

> pigiron wrote:

> > Hi, everyone:

> >    Would anybody be please tell me how to convert 16-bit programs into
> >    32-bit ones.

> >    Thanks!!

> >    LHT

> It would be easier to answer your question if you explain your problem
> more detailed. But generally spoken it should not be too difficult to
> port a Delphi1 program to 32bit if you dont use special tricks
> (accessing the bios etc.).

> Alex

> --
> Author of the free Chatsystem PINO!
> Available at http://pino.cjb.net

Re:How to convert 16-bit programs to 32-bit ones


Well but this is only important to mention if you do special operations
(like copying integers with a fixed size of 2 bytes) or if you read it
from a file.

Alex
--
Author of the free Chatsystem PINO!
Available at http://pino.cjb.net

Re:How to convert 16-bit programs to 32-bit ones


Tip:
If you poke around in 'string'[0]
(to set the length)

use SETLENGTH() instead.......

T.

Other Threads