Skip to content

Commit

Permalink
Version 1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
N1ghtF1re committed Mar 9, 2018
1 parent 1cd5bca commit d5e1903
Show file tree
Hide file tree
Showing 13 changed files with 12 additions and 1 deletion.
Binary file modified AutoProcedureTableGenerator.exe
Binary file not shown.
Binary file modified src/AutoProcedureTableGenerator.res
Binary file not shown.
Binary file added src/AutoProcedureTableGenerator_Icon2.ico
Binary file not shown.
Binary file added src/Preview.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed src/Preview.png
Binary file not shown.
Binary file added src/Prew_UPD.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed src/Win32/Debug/AI.dcu
Binary file not shown.
Binary file modified src/Win32/Debug/AutoProcedureTableGenerator.exe
Binary file not shown.
Binary file removed src/Win32/Debug/NewVersion.dcu
Binary file not shown.
Binary file removed src/Win32/Debug/SplashScreen.dcu
Binary file not shown.
Binary file removed src/Win32/Debug/genTable.dcu
Binary file not shown.
1 change: 1 addition & 0 deletions src/genTable.dfm
Original file line number Diff line number Diff line change
Expand Up @@ -3100,6 +3100,7 @@ object TableGenForm: TTableGenForm
Height = 368
ScrollBars = ssVertical
TabOrder = 0
OnKeyPress = memoInpCodeKeyPress
end
object StringGrid1: TStringGrid
Left = 352
Expand Down
12 changes: 11 additions & 1 deletion src/genTable.pas
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ TTableGenForm = class(TForm)
procedure mnClearClick(Sender: TObject);
procedure mnSupportClick(Sender: TObject);
procedure FormShow(Sender: TObject);
procedure memoInpCodeKeyPress(Sender: TObject; var Key: Char);
private
splash: TSplash;
function GetExcelFileName: String;
Expand Down Expand Up @@ -62,6 +63,15 @@ function TTableGenForm.GetExcelFileName: String;
end;


procedure TTableGenForm.memoInpCodeKeyPress(Sender: TObject; var Key: Char);
begin
if Key = ^A then
begin
(Sender as TMemo).SelectAll;
Key := #0;
end;
end;

procedure TTableGenForm.mnClearClick(Sender: TObject);
begin
memoInpCode.Clear;
Expand Down Expand Up @@ -381,7 +391,7 @@ procedure TTableGenForm.FormCreate(Sender: TObject);

procedure TTableGenForm.FormShow(Sender: TObject);
begin
version:='1.1';
version:='1.2';
if ( (Pos(version,HTMLtext)<>0) or (HTMLtext = '')) then
begin

Expand Down

0 comments on commit d5e1903

Please sign in to comment.