2
0

FormQuickConnect.lfm 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. object frmQuickConnect: TfrmQuickConnect
  2. Left = 272
  3. Height = 154
  4. Top = 160
  5. Width = 350
  6. Caption = 'Quick connection'
  7. ClientHeight = 154
  8. ClientWidth = 350
  9. DesignTimePPI = 120
  10. OnShow = FormShow
  11. LCLVersion = '2.0.10.0'
  12. object Label1: TLabel
  13. Left = 40
  14. Height = 20
  15. Top = 22
  16. Width = 34
  17. Caption = 'Host:'
  18. ParentColor = False
  19. ParentFont = False
  20. end
  21. object btnAceptar: TBitBtn
  22. Left = 50
  23. Height = 38
  24. Top = 100
  25. Width = 94
  26. Caption = '&OK'
  27. Default = True
  28. Kind = bkOK
  29. ModalResult = 1
  30. OnClick = btnAceptarClick
  31. ParentFont = False
  32. TabOrder = 1
  33. end
  34. object btnCancelar: TBitBtn
  35. Left = 210
  36. Height = 38
  37. Top = 100
  38. Width = 94
  39. Cancel = True
  40. Caption = '&Cancel'
  41. Kind = bkCancel
  42. ModalResult = 2
  43. OnClick = btnCancelarClick
  44. ParentFont = False
  45. TabOrder = 2
  46. end
  47. object cmbHost: TComboBox
  48. Left = 108
  49. Height = 28
  50. Top = 16
  51. Width = 150
  52. ItemHeight = 20
  53. ParentFont = False
  54. TabOrder = 0
  55. end
  56. object optTelnet: TRadioButton
  57. Left = 40
  58. Height = 24
  59. Top = 60
  60. Width = 65
  61. Caption = '&Telnet'
  62. ParentFont = False
  63. TabOrder = 3
  64. end
  65. object optSSH: TRadioButton
  66. Left = 140
  67. Height = 24
  68. Top = 60
  69. Width = 51
  70. Caption = 'SSH'
  71. ParentFont = False
  72. TabOrder = 4
  73. end
  74. end