frmWhatsnew.frm
上传用户:davilee3
上传日期:2015-04-22
资源大小:986k
文件大小:2k
源码类别:

浏览器

开发平台:

Visual Basic

  1. VERSION 5.00
  2. Begin VB.Form frmWhatsNew 
  3.    Caption         =   "Form1"
  4.    ClientHeight    =   5985
  5.    ClientLeft      =   60
  6.    ClientTop       =   345
  7.    ClientWidth     =   7305
  8.    BeginProperty Font 
  9.       Name            =   "宋体"
  10.       Size            =   9
  11.       Charset         =   134
  12.       Weight          =   400
  13.       Underline       =   0   'False
  14.       Italic          =   0   'False
  15.       Strikethrough   =   0   'False
  16.    EndProperty
  17.    Icon            =   "frmWhatsnew.frx":0000
  18.    LinkTopic       =   "Form1"
  19.    ScaleHeight     =   5985
  20.    ScaleWidth      =   7305
  21.    ShowInTaskbar   =   0   'False
  22.    StartUpPosition =   1  'CenterOwner
  23.    Begin VB.TextBox Text1 
  24.       BeginProperty Font 
  25.          Name            =   "新宋体"
  26.          Size            =   12
  27.          Charset         =   134
  28.          Weight          =   400
  29.          Underline       =   0   'False
  30.          Italic          =   0   'False
  31.          Strikethrough   =   0   'False
  32.       EndProperty
  33.       Height          =   2775
  34.       Left            =   120
  35.       Locked          =   -1  'True
  36.       MousePointer    =   1  'Arrow
  37.       MultiLine       =   -1  'True
  38.       ScrollBars      =   2  'Vertical
  39.       TabIndex        =   0
  40.       Text            =   "frmWhatsnew.frx":000C
  41.       Top             =   120
  42.       Width           =   4095
  43.    End
  44. End
  45. Attribute VB_Name = "frmWhatsNew"
  46. Attribute VB_GlobalNameSpace = False
  47. Attribute VB_Creatable = False
  48. Attribute VB_PredeclaredId = True
  49. Attribute VB_Exposed = False
  50. Option Explicit
  51. Private Sub Form_Load()
  52. Dim fn&
  53. Me.Caption = "更新情况"
  54. Text1.FontSize = 10
  55. fn = FreeFile
  56. Open App.path & "whats new.txt" For Binary As fn
  57.     Text1.Text = StrConv(InputB(LOF(fn), fn), vbUnicode)
  58. Close fn
  59. End Sub
  60. Private Sub Form_QueryUnload(Cancel As Integer, UnloadMode As Integer)
  61. Text1.Text = ""
  62. End Sub
  63. Private Sub Form_Resize()
  64. With Text1
  65.     .Top = 60
  66.     .Left = 60
  67.     .width = Me.ScaleWidth - 120
  68.     .height = Me.ScaleHeight - 120
  69. End With
  70. End Sub