f2b8b82515
Added another feature for the Code-Explorer
32 lines
573 B
ObjectPascal
Executable File
32 lines
573 B
ObjectPascal
Executable File
unit UnitfrmAllFilesForm;
|
|
|
|
interface
|
|
|
|
uses
|
|
SysUtils, Windows, Messages, Classes, Graphics, Controls,
|
|
StdCtrls, ExtCtrls, Forms, TBXDkPanels, SpTBXDkPanels, mbTBXListBox,
|
|
mbTBXCheckListBox, SpTBXControls;
|
|
|
|
type
|
|
TfrmAllFilesForm = class(TForm)
|
|
lblCaption: TLabel;
|
|
lstFiles: TmbTBXCheckListBox;
|
|
cmdOK: TSpTBXButton;
|
|
cmdCancel: TSpTBXButton;
|
|
procedure FormShow(Sender: TObject);
|
|
end;
|
|
|
|
var
|
|
frmAllFilesForm: TfrmAllFilesForm;
|
|
|
|
implementation
|
|
|
|
{$R *.DFM}
|
|
|
|
procedure TfrmAllFilesForm.FormShow(Sender: TObject);
|
|
begin
|
|
lstFiles.SetFocus;
|
|
end;
|
|
|
|
end.
|