frmWhatsnew.frm
资源名称:IE_VB.rar [点击查看]
上传用户:davilee3
上传日期:2015-04-22
资源大小:986k
文件大小:2k
源码类别:
浏览器
开发平台:
Visual Basic
- VERSION 5.00
- Begin VB.Form frmWhatsNew
- Caption = "Form1"
- ClientHeight = 5985
- ClientLeft = 60
- ClientTop = 345
- ClientWidth = 7305
- BeginProperty Font
- Name = "宋体"
- Size = 9
- Charset = 134
- Weight = 400
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- Icon = "frmWhatsnew.frx":0000
- LinkTopic = "Form1"
- ScaleHeight = 5985
- ScaleWidth = 7305
- ShowInTaskbar = 0 'False
- StartUpPosition = 1 'CenterOwner
- Begin VB.TextBox Text1
- BeginProperty Font
- Name = "新宋体"
- Size = 12
- Charset = 134
- Weight = 400
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- Height = 2775
- Left = 120
- Locked = -1 'True
- MousePointer = 1 'Arrow
- MultiLine = -1 'True
- ScrollBars = 2 'Vertical
- TabIndex = 0
- Text = "frmWhatsnew.frx":000C
- Top = 120
- Width = 4095
- End
- End
- Attribute VB_Name = "frmWhatsNew"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Option Explicit
- Private Sub Form_Load()
- Dim fn&
- Me.Caption = "更新情况"
- Text1.FontSize = 10
- fn = FreeFile
- Open App.path & "whats new.txt" For Binary As fn
- Text1.Text = StrConv(InputB(LOF(fn), fn), vbUnicode)
- Close fn
- End Sub
- Private Sub Form_QueryUnload(Cancel As Integer, UnloadMode As Integer)
- Text1.Text = ""
- End Sub
- Private Sub Form_Resize()
- With Text1
- .Top = 60
- .Left = 60
- .width = Me.ScaleWidth - 120
- .height = Me.ScaleHeight - 120
- End With
- End Sub