⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 frmpjbz.frm

📁 水质模糊综合评价系统 水质模糊综合评价系统 水质模糊综合评价系统
💻 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         =   "水环境评价的基本概念和方法"
      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 = "这里为您提供水质评价方法和标准!"
End Sub

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -