Genau so mache ich das bei den Variabeldeklarationen auch.
So kann man auch mal schnell nach Typ sortieren, halt Sotierung ab der Position vom :,
wobei ich den Typ (meist) auch durch die ungarische Notation bereits am Beginn des Variablennamens erkennen kann. Dadurch brauche ich beim Lesen von Quelltext nicht mehr bei der Deklaration nachschauen, von welchem Typ eine Variabel ist. Das sähe dann in etwa so aus:
Code:
var
UserDirPageCAE : TInputDirWizardPage;
slDOSBoxConf : TStringList;
rbGPSDirCheckBox : TRadioButton;
bmpSplashImage : TBitmapImage;
fmSplashForm : TForm;
dwSetupMajor : dword;
dwSetupMinor : dword;
dwSavedMajor : dword;
dwSavedMinor : dword;
sCAE2000Path : string;
sDOSBoxCAE2000Path : string;
sDOSBoxCAE2000UninstallName : string;
sDOSBoxCAE2000UninstallNameRemovedQuotes : string;
sDOSBoxCAE2000UninstallPath : string;
sDOSBoxCAE2000UninstallPathRemovedQuotes : string;
sDOSBoxCAE2000UninstallString : string;
sDOSBoxCAE2000UninstallStringRemovedQuotes : string;
sGPSPath : string;
sGetCAE2000Path : string;
sSplashFileName : string;
sUserFolderCAE : string;
stmp : string;