?? frmpjbz.frm
字號:
VERSION 5.00
Begin VB.Form FrmPjbz
BackColor = &H00C0C0C0&
Caption = "水資源評價信息 "
ClientHeight = 5565
ClientLeft = 1740
ClientTop = 1860
ClientWidth = 7545
ForeColor = &H0000FFFF&
LinkTopic = "Form7"
LockControls = -1 'True
ScaleHeight = 5565
ScaleWidth = 7545
Begin VB.TextBox Text1
BeginProperty Font
Name = "楷體_GB2312"
Size = 12
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00004080&
Height = 4575
Left = 2040
MultiLine = -1 'True
ScrollBars = 3 'Both
TabIndex = 4
Text = "FrmPjbz.frx":0000
Top = 240
Width = 4815
End
Begin VB.CommandButton Command4
Caption = "水資源污染評價"
Height = 660
Left = 240
TabIndex = 3
Top = 3960
Width = 1575
End
Begin VB.CommandButton Command3
Caption = "地下水資源評價"
Height = 660
Left = 240
TabIndex = 2
Top = 2835
Width = 1575
End
Begin VB.CommandButton Command2
Caption = "地表水資源評價"
Height = 660
Left = 240
TabIndex = 1
Top = 1725
Width = 1575
End
Begin VB.CommandButton Command1
BackColor = &H80000009&
Caption = "水環(huán)境評價的基本概念和方法"
DownPicture = "FrmPjbz.frx":0021
Height = 660
Left = 240
MaskColor = &H00FFC0FF&
MousePointer = 6 'Size NE SW
Picture = "FrmPjbz.frx":1033
TabIndex = 0
Top = 600
Width = 1575
End
End
Attribute VB_Name = "frmpjbz"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Command1_Click()
Dim filenum As Long
Dim strfilename As String
Dim strvalue As String
Text1.Text = ""
strfilename = App.Path & "\textfile1.txt"
filenum = FreeFile()
Open strfilename For Binary As #filenum
strvalue = Space(LOF(filenum))
Get filenum, , strvalue
Close #filenum
Text1.Text = strvalue
End Sub
Private Sub Command2_Click()
Dim filenum As Long
Dim strfilename As String
Dim strvalue As String
Text1.Text = ""
strfilename = App.Path & "\textfile2.txt"
filenum = FreeFile()
Open strfilename For Binary As #filenum
strvalue = Space(LOF(filenum))
Get filenum, , strvalue
Close #filenum
Text1.Text = strvalue
End Sub
Private Sub Command3_Click()
Dim filenum As Long
Dim strfilename As String
Dim strvalue As String
Text1.Text = ""
strfilename = App.Path & "\textfile3.txt"
filenum = FreeFile()
Open strfilename For Binary As #filenum
strvalue = Space(LOF(filenum))
Get filenum, , strvalue
Close #filenum
Text1.Text = strvalue
End Sub
Private Sub Command4_Click()
Dim filenum As Long
Dim strfilename As String
Dim strvalue As String
Text1.Text = ""
strfilename = App.Path & "\file4.txt"
filenum = FreeFile()
Open strfilename For Binary As #filenum
strvalue = Space(LOF(filenum))
Get filenum, , strvalue
Close #filenum
Text1.Text = strvalue
End Sub
Private Sub Form_Load()
Text1.Text = "這里為您提供水質(zhì)評價方法和標準!"
End Sub
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -