Glam Prestige Journal

Bright entertainment trends with youth appeal.

I am trying to run a 16bit application on windows 10 64bit but it is giving this error.enter image description hereI want to know that, How can we convert or update this application in 64bit. PS: I have source file of this application.

2

1 Answer

Converting a 16-bit application from 16-bit to 64-bit requires it to be recompiled using a modern compiler. But even if this is your application and you have the source, the differences in the API may require additional development work.

Without re-compilation, you will need to create a virtual machine with an older version of Windows 32-bit in order to run this application.

It was also suggested to try usingDOSBox.

10