Re: To Hungarian or not to Hungarian
Peter Morris wrote:
I name things like this
FirstNameEdit: TEdit;
FirstNameLabel: TLabel;
I would make those:
edtFirstName: TEdit;
lblFirstName: TLabel;
Makes them sort nicely in the Object Treeview.
--
Bill
.
Relevant Pages
- Re: Generic Pointers, and fun with OnShowHint
... What is even more interesting is to realise that both TEdit and TLabel ... declare a class as a descendant of TControl, ... As a convention where I do this sort of coding I name the type-casting ... (comp.lang.pascal.delphi.misc) - Re: Delphi strategy against Lazarus
... I just created a simple app (with the latest lazarus 0.9.24)... ... added just a TLabel, TEdit & a TButton to a blank form... ... (borland.public.delphi.non-technical) - Re: How to speed up looping through controls (used for restore and maximize)?
... As a different approach, one could create a TEdit, placing it over the TLabel, ... TEdit.Tag, and copy the label text to the TEdit. ... Lab: TLabel; ... (comp.lang.pascal.delphi.misc) - Re: How to speed up looping through controls (used for restore and maximize)?
... >As a different approach, one could create a TEdit, placing it over the TLabel, ... >store a reference to it in the TLabel.Tag, a reference to the TLabel in the ... >TEdit.Tag, and copy the label text to the TEdit. ... >label, and send the form a windows message to free the TEdit. ... (comp.lang.pascal.delphi.misc) - Re: Delphi strategy against Lazarus
... added just a TLabel, TEdit & a TButton to a blank form... ... exe size... ... (borland.public.delphi.non-technical) |
|