delphimvcframework/examples/QueueAck/SendMessage/SendMessageForm.dfm
2012-12-27 22:32:04 +00:00

87 lines
1.7 KiB
Plaintext

object SendMessageMainForm: TSendMessageMainForm
Left = 0
Top = 0
Caption = 'Send Message'
ClientHeight = 333
ClientWidth = 426
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
OldCreateOrder = False
OnCreate = FormCreate
OnDestroy = FormDestroy
PixelsPerInch = 96
TextHeight = 13
object Label1: TLabel
Left = 152
Top = 285
Width = 62
Height = 13
Caption = 'Queue Name'
end
object Label2: TLabel
Left = 8
Top = 5
Width = 182
Height = 13
Caption = 'Type here text of message to be sent'
end
object Label3: TLabel
Left = 8
Top = 127
Width = 150
Height = 13
Caption = 'Stomp Frame Sent and Receive'
end
object QueueMemo: TMemo
Left = 8
Top = 24
Width = 410
Height = 97
TabOrder = 0
end
object SendMessageButton: TButton
Left = 8
Top = 269
Width = 138
Height = 56
Caption = 'Send Message'
TabOrder = 1
OnClick = SendMessageButtonClick
end
object QueueEdit: TEdit
Left = 152
Top = 304
Width = 266
Height = 21
TabOrder = 2
Text = '/queue/alarm'
end
object LogMemo: TMemo
Left = 8
Top = 146
Width = 410
Height = 117
TabOrder = 3
end
object AutomaticSendCheckBox: TCheckBox
Left = 220
Top = 269
Width = 181
Height = 17
Caption = 'Automatic send every 5 seconds '
TabOrder = 4
OnClick = AutomaticSendCheckBoxClick
end
object AutomaticSendTimer: TTimer
Enabled = False
Interval = 5000
OnTimer = AutomaticSendTimerTimer
Left = 320
Top = 24
end
end