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.

39 lines
1014 B

  1. VERSION 5.00
  2. Begin VB.Form frmDocument
  3. Caption = "frmDocument"
  4. ClientHeight = 4230
  5. ClientLeft = 60
  6. ClientTop = 405
  7. ClientWidth = 8895
  8. LinkTopic = "Form1"
  9. MaxButton = 0 'False
  10. MDIChild = -1 'True
  11. MinButton = 0 'False
  12. ScaleHeight = 4230
  13. ScaleWidth = 8895
  14. Begin VB.PictureBox Picture1
  15. Height = 495
  16. Left = 3840
  17. ScaleHeight = 435
  18. ScaleWidth = 1155
  19. TabIndex = 0
  20. Top = 1920
  21. Width = 1215
  22. End
  23. End
  24. Attribute VB_Name = "frmDocument"
  25. Attribute VB_GlobalNameSpace = False
  26. Attribute VB_Creatable = False
  27. Attribute VB_PredeclaredId = True
  28. Attribute VB_Exposed = False
  29. Private Sub Form_Load()
  30. Form_Resize
  31. End Sub
  32. Private Sub Form_Resize()
  33. On Error Resume Next
  34. txtText.Move 100, 100, Me.ScaleWidth - 200, Me.ScaleHeight - 200
  35. End Sub