Re: [fpc-pascal]Program is busy

2003-07-19 Thread MichaƂ Kamburelis
If you're doing anything time-consumig (like reading data from internet socket) and you want your program to respond to user actions (to Windows / XWindows / any-other-event-driven-environment events), to repaint its windows etc. you have to merge event loop with your data-reading code. Somethi

RE: [fpc-pascal]Program is busy

2003-07-18 Thread Lee, John
10:57 To: [EMAIL PROTECTED] Subject: [fpc-pascal]Program is busy When writing data to file or reading data stream directly from port or downloading file from internet then program hangs as long as it is busy and does not respond to any Windows messages. Also Window will never be refreshed b

[fpc-pascal]Program is busy

2003-07-18 Thread Raivo Nael
When writing data to file or reading data stream directly from port or downloading file from internet then program hangs as long as it is busy and does not respond to any Windows messages. Also Window will never be refreshed before work is done. All you know that. This is not serious problem. B