|
ProDelphi 6.6 source code profiler released
ProDelphi is a source code profiler for Delphi.It gives you the CPU-time consumed by the procedures of your program.
The measurement is done on a base
of CPU-cycles. It works with a Pentium CPU or a Pentium compatible CPU like AMD K6. Measurement results can be viewed with a built in viewer,exported to a data base or stored into an ASCII-file.
Results are either displayed in CPU-cycles or in a variable format in micro seconds (minimum 0.001 micro seconds), sec, min or hours. Measuring of DLL's is fully supported, also conditional compilation and
multi directory profiling. An API allows switching
of measurement on and off or store intermediate
results.
The freeware version can measure upto 30
methods. The professional version can measure 10.000 methods and additionally pure assembler procedures.
ProDelphi integrates itself in the Delphi
Tools-menu.
Main enhancement of this release:
A history function makes comparison of the actual and a preceeding runtime possible. It also gives a quick overview about which method became faster or
slower.
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....
|