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.

43 lines
1.3 KiB

  1. VERSION 5.00
  2. Begin VB.Form frmObjText
  3. Caption = "Loading..."
  4. ClientHeight = 7695
  5. ClientLeft = 3270
  6. ClientTop = 2475
  7. ClientWidth = 11265
  8. Icon = "frmObjText.frx":0000
  9. LinkTopic = "Form1"
  10. ScaleHeight = 7695
  11. ScaleWidth = 11265
  12. Begin VB.TextBox txtMain
  13. BeginProperty Font
  14. Name = "Courier New"
  15. Size = 9.75
  16. Charset = 0
  17. Weight = 400
  18. Underline = 0 'False
  19. Italic = 0 'False
  20. Strikethrough = 0 'False
  21. EndProperty
  22. Height = 2055
  23. Left = 120
  24. Locked = -1 'True
  25. MultiLine = -1 'True
  26. ScrollBars = 3 'Both
  27. TabIndex = 0
  28. Top = 120
  29. Width = 4155
  30. End
  31. End
  32. Attribute VB_Name = "frmObjText"
  33. Attribute VB_GlobalNameSpace = False
  34. Attribute VB_Creatable = False
  35. Attribute VB_PredeclaredId = True
  36. Attribute VB_Exposed = False
  37. Option Explicit
  38. Private Sub Form_Resize()
  39. If Me.WindowState <> 1 Then
  40. txtMain.Move Me.ScaleLeft, Me.ScaleTop, Me.ScaleWidth, Me.ScaleHeight
  41. End If
  42. End Sub