Skip to content

Commit 6307cc0

Browse files
version 3.6.9
- Added Expanded button and Panel in StyledTaskDialog Form - Changed Panel Order in StyledTaskDialog - Added OnEnableNavBtn event in StyledDbNavigator and StyledBindNavigator - Fixed Cursor in StyledDbNavButton when disabled - Fixed "Resource BUTTON_SHIELD_ADMIN not found" in StyledTaskDialog - Fixed Autoclick using StyledMessageDlg and StyledTaskMessageDlg - Fixed Caption position
1 parent cc14ccf commit 6307cc0

29 files changed

+1564
-213
lines changed

Demos/Delphi10.0/StyledComponentsDemo.dpr

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,5 +57,6 @@ begin
5757
TStyleManager.FormBorderStyle := TStyleManager.TFormBorderStyle.fbsSystemStyle;
5858
Application.CreateForm(TdmResources, dmResources);
5959
Application.CreateForm(TfrmMain, frmMain);
60+
Application.OnException := frmMain.ShowError;
6061
Application.Run;
6162
end.

Demos/Delphi10.1/StyledComponentsDemo.dpr

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,5 +57,6 @@ begin
5757
TStyleManager.FormBorderStyle := TStyleManager.TFormBorderStyle.fbsSystemStyle;
5858
Application.CreateForm(TdmResources, dmResources);
5959
Application.CreateForm(TfrmMain, frmMain);
60+
Application.OnException := frmMain.ShowError;
6061
Application.Run;
6162
end.

Demos/Delphi10.2/StyledComponentsDemo.dpr

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,5 +57,6 @@ begin
5757
TStyleManager.FormBorderStyle := TStyleManager.TFormBorderStyle.fbsSystemStyle;
5858
Application.CreateForm(TdmResources, dmResources);
5959
Application.CreateForm(TfrmMain, frmMain);
60+
Application.OnException := frmMain.ShowError;
6061
Application.Run;
6162
end.

Demos/Delphi10.3/StyledComponentsDemo.dpr

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,5 +57,6 @@ begin
5757
TStyleManager.FormBorderStyle := TStyleManager.TFormBorderStyle.fbsSystemStyle;
5858
Application.CreateForm(TdmResources, dmResources);
5959
Application.CreateForm(TfrmMain, frmMain);
60+
Application.OnException := frmMain.ShowError;
6061
Application.Run;
6162
end.

Demos/Delphi10.4/StyledComponentsDemo.dpr

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,5 +58,6 @@ begin
5858
TStyleManager.FormBorderStyle := TStyleManager.TFormBorderStyle.fbsSystemStyle;
5959
Application.CreateForm(TdmResources, dmResources);
6060
Application.CreateForm(TfrmMain, frmMain);
61+
Application.OnException := frmMain.ShowError;
6162
Application.Run;
6263
end.

Demos/Delphi11/StyledComponentsDemo.dpr

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,5 +59,6 @@ begin
5959
TStyleManager.FormBorderStyle := TStyleManager.TFormBorderStyle.fbsSystemStyle;
6060
Application.CreateForm(TdmResources, dmResources);
6161
Application.CreateForm(TfrmMain, frmMain);
62+
Application.OnException := frmMain.ShowError;
6263
Application.Run;
6364
end.

Demos/Delphi12/StyledComponentsDemo.dpr

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,5 +59,6 @@ begin
5959
TStyleManager.FormBorderStyle := TStyleManager.TFormBorderStyle.fbsSystemStyle;
6060
Application.CreateForm(TdmResources, dmResources);
6161
Application.CreateForm(TfrmMain, frmMain);
62+
Application.OnException := frmMain.ShowError;
6263
Application.Run;
6364
end.

Demos/Delphi12/StyledComponentsDemo.dproj

Lines changed: 1008 additions & 1 deletion
Large diffs are not rendered by default.

Demos/DelphiXE6/StyledComponentsDemo.dpr

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,11 @@ uses
5050

5151
begin
5252
Application.Initialize;
53+
Application.MainFormOnTaskBar := True;
54+
Application.ActionUpdateDelay := 50;
5355
Application.Title := 'Styled Components Demos with Delphi XE6';
5456
Application.CreateForm(TdmResources, dmResources);
5557
Application.CreateForm(TfrmMain, frmMain);
58+
Application.OnException := frmMain.ShowError;
5659
Application.Run;
5760
end.

Demos/DelphiXE7/StyledComponentsDemo.dpr

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,5 +55,6 @@ begin
5555
Application.Title := 'Styled Components Demos with Delphi XE7';
5656
Application.CreateForm(TdmResources, dmResources);
5757
Application.CreateForm(TfrmMain, frmMain);
58+
Application.OnException := frmMain.ShowError;
5859
Application.Run;
5960
end.

0 commit comments

Comments
 (0)