Files
HeidiSQL/source/detours/Demo/DetoursDemo/Delphi/Objects/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

53 lines
1007 B
Plaintext

object Main: TMain
Left = 0
Top = 0
BorderStyle = bsSizeToolWin
Caption = 'Hooking TControl.SetTextBuf'
ClientHeight = 164
ClientWidth = 178
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
OldCreateOrder = False
PixelsPerInch = 96
TextHeight = 13
object BtnEnableHook: TButton
Left = 17
Top = 90
Width = 151
Height = 25
Caption = 'BtnEnableHook'
TabOrder = 0
OnClick = BtnEnableHookClick
end
object BtnDisableHook: TButton
Left = 17
Top = 116
Width = 151
Height = 25
Caption = 'BtnDisableHook'
TabOrder = 1
OnClick = BtnDisableHookClick
end
object Edit1: TEdit
Left = 17
Top = 24
Width = 151
Height = 21
TabOrder = 2
Text = 'Hi'
end
object BtnClickMe: TButton
Left = 17
Top = 51
Width = 151
Height = 25
Caption = 'Click Me'
TabOrder = 3
OnClick = BtnClickMeClick
end
end