Re: [fpc-pascal] Super Large Integer Math Calculations

2017-08-10 Thread Stuart Cox
Have a look at http://www.wolfgang-ehrhardt.de/ On 2017-07-11 6:05 AM, nore...@z505.com wrote: On 2017-07-07 17:08, Bart wrote: On 7/7/17, nore...@z505.com wrote: For integers beyond 64 bit, or even beyond 32 bit on a 64 bit machine, why can't the math be broken down into

Re: [fpc-pascal] Windows API SendMessage()

2017-08-10 Thread Santiago A.
El 10/08/17 a las 13:11, James Richters escribió: You need to use PostMessage if you want to your program to work correctly. SendMessage waits reply and you don't have a message pump in your console application, thus a hang happens. Thank you... PostMessage() works to turn off the display,

Re: [fpc-pascal] Windows API SendMessage()

2017-08-10 Thread James Richters
>You need to use PostMessage if you want to your program to work correctly. >SendMessage waits reply and you don't have a message pump in your console >application, thus a hang happens. Thank you... PostMessage() works to turn off the display, but for some strange reason it can't turn it back