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
39 lines
1014 B
VERSION 5.00
|
|
Begin VB.Form frmDocument
|
|
Caption = "frmDocument"
|
|
ClientHeight = 4230
|
|
ClientLeft = 60
|
|
ClientTop = 405
|
|
ClientWidth = 8895
|
|
LinkTopic = "Form1"
|
|
MaxButton = 0 'False
|
|
MDIChild = -1 'True
|
|
MinButton = 0 'False
|
|
ScaleHeight = 4230
|
|
ScaleWidth = 8895
|
|
Begin VB.PictureBox Picture1
|
|
Height = 495
|
|
Left = 3840
|
|
ScaleHeight = 435
|
|
ScaleWidth = 1155
|
|
TabIndex = 0
|
|
Top = 1920
|
|
Width = 1215
|
|
End
|
|
End
|
|
Attribute VB_Name = "frmDocument"
|
|
Attribute VB_GlobalNameSpace = False
|
|
Attribute VB_Creatable = False
|
|
Attribute VB_PredeclaredId = True
|
|
Attribute VB_Exposed = False
|
|
|
|
Private Sub Form_Load()
|
|
Form_Resize
|
|
End Sub
|
|
|
|
|
|
Private Sub Form_Resize()
|
|
On Error Resume Next
|
|
txtText.Move 100, 100, Me.ScaleWidth - 200, Me.ScaleHeight - 200
|
|
End Sub
|
|
|