|
ProDelphi source code profiler version 7.3
ProDelphi, the source code profiler for Delphi, version 7.3 is
released.
New in version 7.3:
- Enhanced accuracy of measurement, especially for nested procedures if
an Intel processor is used.
- Optimization is automatically switched off if the user forgets to uncheck
the optimization switch. This guaranties a high accuracy measurement.
- Professional version can measure 16000 methods now (before 10000).
- Bugfix: The $IFOPT compiler directive was not processed.
- Bugfix: Example program displayed wrong time with some Intel processors.
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....
|