How to Stop Your Program for a Period of Time

Posted December 15th @ 6:52 pm by m3Rlin

The easiest way to stop execution of your program is to use the Windows API Sleep() function. The function stops the program for n milliseconds. The only problem is that this function does not properly support multitasking, so during this time your program will not process any Windows messages, so you may want to check [...]

How to Get a List of Open Files in the IDE

Posted December 15th @ 4:10 pm by m3Rlin

If you wish to know what files Delphi has open you can check the buffer list. The shortcut is Ctrl + B. A window will pop up with the list. To open any of the files in the editor just double-click it. Some files will always remain open although you may not always see them [...]

« Previous EntriesNext Entries »