SendProgressUnit.dfm 926 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. object SendProgressForm: TSendProgressForm
  2. Left = 159
  3. Top = 155
  4. ActiveControl = CancelButton
  5. BorderIcons = [biSystemMenu]
  6. BorderStyle = bsDialog
  7. Caption = 'Sending...'
  8. ClientHeight = 95
  9. ClientWidth = 345
  10. Color = clBtnFace
  11. Font.Charset = DEFAULT_CHARSET
  12. Font.Color = clWindowText
  13. Font.Height = -11
  14. Font.Name = 'MS Sans Serif'
  15. Font.Style = []
  16. OldCreateOrder = False
  17. Position = poScreenCenter
  18. OnCloseQuery = FormCloseQuery
  19. PixelsPerInch = 96
  20. TextHeight = 13
  21. object FileNameLabel: TLabel
  22. Left = 16
  23. Top = 16
  24. Width = 3
  25. Height = 13
  26. end
  27. object ProgressBar: TProgressBar
  28. Left = 16
  29. Top = 32
  30. Width = 313
  31. Height = 16
  32. Max = 0
  33. TabOrder = 0
  34. end
  35. object CancelButton: TButton
  36. Left = 136
  37. Top = 60
  38. Width = 73
  39. Height = 25
  40. Cancel = True
  41. Caption = '&Cancel'
  42. Default = True
  43. TabOrder = 1
  44. OnClick = CancelButtonClick
  45. end
  46. end