Files
HeidiSQL/source/detours/Demo/DetoursDemo/Delphi/Interfaces/Demo1/uMain.dfm
Ansgar Becker 54a7930045 Clean up:
* remove Detours package, move code to /source/detours/
* remove Detours code from /source/vcl-styles-utils/delphi-detours-library/, so we have only one version
* remove Vcl.FormsFix.pas, as the bugs I fixed with that are most likely fixed with the move to Delphi 10. See https://www.heidisql.com/forum.php?t=19141 for the original bug report.
* only vcl-styles-utils uses the Detours lib from now on
2018-10-30 16:44:48 +01:00

45 lines
876 B
Plaintext

object Main: TMain
Left = 0
Top = 0
BorderStyle = bsSizeToolWin
Caption = 'Hooking Method in interface'
ClientHeight = 133
ClientWidth = 298
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
OldCreateOrder = False
PixelsPerInch = 96
TextHeight = 13
object BtnCallShowMsg: TButton
Left = 32
Top = 24
Width = 241
Height = 25
Caption = 'Call ShowMsg'
TabOrder = 0
OnClick = BtnCallShowMsgClick
end
object BtnHook: TButton
Left = 32
Top = 55
Width = 241
Height = 25
Caption = 'Hook ShowMsg'
TabOrder = 1
OnClick = BtnHookClick
end
object BtnUnHook: TButton
Left = 32
Top = 86
Width = 241
Height = 25
Caption = 'UnHook ShowMsg '
TabOrder = 2
OnClick = BtnUnHookClick
end
end