Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

76 lines
2.2 KiB

  1. VERSION 5.00
  2. Begin VB.Form frmPause
  3. BorderStyle = 3 'Fixed Dialog
  4. Caption = "Pausing..."
  5. ClientHeight = 1215
  6. ClientLeft = 45
  7. ClientTop = 330
  8. ClientWidth = 3135
  9. Icon = "frmPause.frx":0000
  10. LinkTopic = "Form1"
  11. MaxButton = 0 'False
  12. MinButton = 0 'False
  13. ScaleHeight = 1215
  14. ScaleWidth = 3135
  15. ShowInTaskbar = 0 'False
  16. StartUpPosition = 1 'CenterOwner
  17. Begin VB.Timer Timer1
  18. Interval = 5000
  19. Left = 2640
  20. Top = 120
  21. End
  22. Begin VB.CommandButton Command1
  23. Cancel = -1 'True
  24. Caption = "Stop the Test"
  25. Default = -1 'True
  26. BeginProperty Font
  27. Name = "MS Sans Serif"
  28. Size = 8.25
  29. Charset = 0
  30. Weight = 700
  31. Underline = 0 'False
  32. Italic = 0 'False
  33. Strikethrough = 0 'False
  34. EndProperty
  35. Height = 555
  36. Left = 240
  37. TabIndex = 1
  38. Top = 600
  39. Width = 2655
  40. End
  41. Begin VB.Label Label1
  42. Alignment = 2 'Center
  43. AutoSize = -1 'True
  44. Caption = "Pausing for 5 seconds..."
  45. BeginProperty Font
  46. Name = "MS Sans Serif"
  47. Size = 8.25
  48. Charset = 0
  49. Weight = 700
  50. Underline = 0 'False
  51. Italic = 0 'False
  52. Strikethrough = 0 'False
  53. EndProperty
  54. Height = 195
  55. Left = 60
  56. TabIndex = 0
  57. Top = 120
  58. Width = 3045
  59. End
  60. End
  61. Attribute VB_Name = "frmPause"
  62. Attribute VB_GlobalNameSpace = False
  63. Attribute VB_Creatable = False
  64. Attribute VB_PredeclaredId = True
  65. Attribute VB_Exposed = False
  66. Option Explicit
  67. Private Sub Command1_Click()
  68. frmMain.canceled = True
  69. Unload Me
  70. End Sub
  71. Private Sub Timer1_Timer()
  72. Unload Me
  73. End Sub