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