|
ProKylix 1.6 source code profiler released
The new releases of ProKylix (1.6), the source code profiler for Kylix, is
immediately ready for download.
With ProKylix you can measure the runtime of your program withthe granularity of 1 CPU-cycle. The principle of source instrumenting and the sophisticated correction algorithym guarantee extremely high accuracy. The built-in viewer makes you find the bottlenecks in your application at first glance.
Feel free to download from: http://www.prodelphi.de
Related Discussions - HELP WITH CHDIR !!!! TURBO PASCAL VS DELPHI (2001-01-03 06:48:49)This is because the ChDir Procedure, the SetCurrentDir and SetCurrentDirectory Functions are changing the directory in the active process.
Try...
- HELP WITH EXCEPTIONS ..... I'M GETTING CRAZY! (2001-01-06 19:59:49)How to make it run as if you were running it outside of Delphi.
Tools | Debugger Options --> Language Exceptions.
Their is a checkbox titled...
- HOW TO CREATE SEQURE LOGIN TO DESKTOP APPLICATION (2001-01-05 09:30:01)I'm not pretty sure, what your intention is. One possible approach would be to use a edit-field, which cannot be "spyed out" by the usual password...
- HOW TO MAKE A REPEAT FUNCTION IN A TOOLBUTTON? (2001-01-05 01:09:01)uhm...i don't know too, what you want to do...but wile pressing you mean?
make a repeat function on the onmousedown-event like this
repeat...
- .BMP ISN'T A VALID PICTURE FILE FORMAT!? UHUM!? (2001-01-05 14:59:28)I think you have to Specify
what line the text is in, like this.
Image1.Picture.LoadFromFile(Memo1.Lines.Strings);
If the text in the...
- HOW TO COPY A STRING INTO A PCHAR??????? (2001-01-05 23:10:36)ShellExecute(Application.MainForm.Handle, nil, 'mailto:' + PChar(EmailAddress), '', '', SW_SHOW);
Actually, that bit of code won't work correctly....
- PRINTING A PDF FORM (2001-01-07 03:57:11)Hello Tom,
If you find a delphi solution to bypass the acrobat Printer i am very interrested.
Actually i am printing a lot of invoice to the...
- TOO STUPID TO WORK OUT HOW TO USE GETKEYBOARDSTATE (2001-01-06 22:32:24)GetKeyboardState just gets the information of the input devices.
For example:
var
KS: TKeyboardstate;
GetKeyBoardState(KS);
//0=OFF...
- DETECTING ACTIVE DESKTOP -- SYSTEMPARAMETERSINFO? (2001-01-07 06:06:54)I'll check this out and then accept as answer, cheers :)
- HOW TO GET A LIST OF DIRECTORYS (MAPS IN WINDOWS). (2001-01-08 02:40:16)Check out the Visual ListView Demo in Delphi ...
Just Cut'n Paste the code and enjoy ... :o)
Or use the TDirectoryListBox Component....
|