Unit1.dfm 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. object Form1: TForm1
  2. Left = 0
  3. Top = 0
  4. Caption = 'Form1'
  5. ClientHeight = 299
  6. ClientWidth = 635
  7. Color = clBtnFace
  8. Font.Charset = DEFAULT_CHARSET
  9. Font.Color = clWindowText
  10. Font.Height = -11
  11. Font.Name = 'Tahoma'
  12. Font.Style = []
  13. OldCreateOrder = False
  14. PixelsPerInch = 96
  15. TextHeight = 13
  16. object Button1: TButton
  17. Left = 72
  18. Top = 32
  19. Width = 75
  20. Height = 25
  21. Caption = 'Button1'
  22. TabOrder = 0
  23. OnClick = Button1Click
  24. end
  25. object IdHTTP1: TIdHTTP
  26. IOHandler = IdSSLIOHandlerSocketOpenSSL1
  27. AllowCookies = True
  28. ProxyParams.BasicAuthentication = False
  29. ProxyParams.ProxyPort = 0
  30. Request.ContentLength = -1
  31. Request.Accept = 'text/html, */*'
  32. Request.BasicAuthentication = False
  33. Request.UserAgent = 'Mozilla/3.0 (compatible; Indy Library)'
  34. HTTPOptions = [hoForceEncodeParams]
  35. Left = 280
  36. Top = 104
  37. end
  38. object IdSSLIOHandlerSocketOpenSSL1: TIdSSLIOHandlerSocketOpenSSL
  39. MaxLineAction = maException
  40. Port = 0
  41. DefaultPort = 0
  42. SSLOptions.Method = sslvSSLv23
  43. SSLOptions.Mode = sslmClient
  44. SSLOptions.VerifyMode = []
  45. SSLOptions.VerifyDepth = 0
  46. Left = 416
  47. Top = 144
  48. end
  49. end