GoToLine.dfm 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. object frmGotoLine: TfrmGotoLine
  2. Left = 461
  3. Top = 268
  4. BorderIcons = [biSystemMenu]
  5. BorderStyle = bsSingle
  6. Caption = 'Go to Line'
  7. ClientHeight = 89
  8. ClientWidth = 273
  9. Color = clBtnFace
  10. Font.Charset = DEFAULT_CHARSET
  11. Font.Color = clWindowText
  12. Font.Height = -11
  13. Font.Name = 'MS Sans Serif'
  14. Font.Style = []
  15. FormStyle = fsStayOnTop
  16. OldCreateOrder = False
  17. Position = poOwnerFormCenter
  18. OnCreate = FormCreate
  19. OnShow = FormShow
  20. PixelsPerInch = 96
  21. TextHeight = 13
  22. object Label1: TLabel
  23. Left = 16
  24. Top = 8
  25. Width = 63
  26. Height = 13
  27. Caption = 'Line Number:'
  28. end
  29. object txtLineNumber: TEdit
  30. Left = 16
  31. Top = 24
  32. Width = 249
  33. Height = 21
  34. MaxLength = 10
  35. TabOrder = 0
  36. OnKeyPress = txtLineNumberKeyPress
  37. end
  38. object btnOK: TButton
  39. Left = 112
  40. Top = 56
  41. Width = 75
  42. Height = 25
  43. Caption = 'OK'
  44. Default = True
  45. ModalResult = 1
  46. TabOrder = 1
  47. OnClick = btnOKClick
  48. end
  49. object btnCancel: TButton
  50. Left = 192
  51. Top = 56
  52. Width = 75
  53. Height = 25
  54. Cancel = True
  55. Caption = 'Cancel'
  56. ModalResult = 2
  57. TabOrder = 2
  58. end
  59. end