mirror of
https://e.coding.net/circlecloud/LoadFirstPic.git
synced 2024-12-27 07:58:52 +00:00
a9883a3ec9
Signed-off-by: j502647092 <jtb1@163.com>
33 lines
832 B
Plaintext
33 lines
832 B
Plaintext
VERSION 5.00
|
|
Begin VB.Form Frm_Err
|
|
Caption = "ÏÂÔØ´íÎóÊý¾Ý"
|
|
ClientHeight = 2595
|
|
ClientLeft = 60
|
|
ClientTop = 345
|
|
ClientWidth = 7380
|
|
LinkTopic = "Form1"
|
|
ScaleHeight = 2595
|
|
ScaleWidth = 7380
|
|
StartUpPosition = 3 '´°¿Úȱʡ
|
|
Begin VB.TextBox ErrMsg
|
|
Height = 3000
|
|
Left = 0
|
|
MultiLine = -1 'True
|
|
ScrollBars = 3 'Both
|
|
TabIndex = 0
|
|
Top = 0
|
|
Width = 7500
|
|
End
|
|
End
|
|
Attribute VB_Name = "Frm_Err"
|
|
Attribute VB_GlobalNameSpace = False
|
|
Attribute VB_Creatable = False
|
|
Attribute VB_PredeclaredId = True
|
|
Attribute VB_Exposed = False
|
|
Option Explicit
|
|
|
|
Private Sub Form_Resize()
|
|
ErrMsg.Width = Me.Width
|
|
ErrMsg.Height = Me.Height
|
|
End Sub
|