12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- object Form1: TForm1
- Left = 0
- Top = 0
- Caption = 'Form1'
- ClientHeight = 299
- ClientWidth = 635
- Color = clBtnFace
- Font.Charset = DEFAULT_CHARSET
- Font.Color = clWindowText
- Font.Height = -11
- Font.Name = 'Tahoma'
- Font.Style = []
- OldCreateOrder = False
- PixelsPerInch = 96
- TextHeight = 13
- object Button1: TButton
- Left = 72
- Top = 32
- Width = 75
- Height = 25
- Caption = 'Button1'
- TabOrder = 0
- OnClick = Button1Click
- end
- object IdHTTP1: TIdHTTP
- IOHandler = IdSSLIOHandlerSocketOpenSSL1
- AllowCookies = True
- ProxyParams.BasicAuthentication = False
- ProxyParams.ProxyPort = 0
- Request.ContentLength = -1
- Request.Accept = 'text/html, */*'
- Request.BasicAuthentication = False
- Request.UserAgent = 'Mozilla/3.0 (compatible; Indy Library)'
- HTTPOptions = [hoForceEncodeParams]
- Left = 280
- Top = 104
- end
- object IdSSLIOHandlerSocketOpenSSL1: TIdSSLIOHandlerSocketOpenSSL
- MaxLineAction = maException
- Port = 0
- DefaultPort = 0
- SSLOptions.Method = sslvSSLv23
- SSLOptions.Mode = sslmClient
- SSLOptions.VerifyMode = []
- SSLOptions.VerifyDepth = 0
- Left = 416
- Top = 144
- end
- end
|