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

📄 frmmain.frm

📁 该软件通过使用者选择病情以及症状,可以初步判断患者所患何病.
💻 FRM
字号:
VERSION 5.00
Begin VB.Form frmMain 
   BackColor       =   &H00C0FFC0&
   BorderStyle     =   1  'Fixed Single
   Caption         =   "疾病诊断专家系统"
   ClientHeight    =   4320
   ClientLeft      =   2775
   ClientTop       =   2130
   ClientWidth     =   4500
   Icon            =   "frmMain.frx":0000
   LinkTopic       =   "Form1"
   MaxButton       =   0   'False
   MinButton       =   0   'False
   ScaleHeight     =   4320
   ScaleWidth      =   4500
   Begin VB.PictureBox Picture1 
      BackColor       =   &H0080FF80&
      Height          =   1560
      Left            =   158
      ScaleHeight     =   1500
      ScaleWidth      =   4125
      TabIndex        =   1
      Top             =   1290
      Width           =   4185
      Begin VB.CommandButton cmdQueryExpert 
         Caption         =   "告诉专家病情"
         Height          =   960
         Left            =   300
         Picture         =   "frmMain.frx":0442
         Style           =   1  'Graphical
         TabIndex        =   3
         Top             =   255
         Width           =   1605
      End
      Begin VB.CommandButton cmdExpertAsk 
         Caption         =   "专家询问病情"
         Height          =   960
         Left            =   2190
         Picture         =   "frmMain.frx":0D0C
         Style           =   1  'Graphical
         TabIndex        =   2
         Top             =   240
         Width           =   1605
      End
   End
   Begin VB.CommandButton cmdWH 
      Caption         =   "疾病知识库维护"
      Height          =   960
      Left            =   1448
      Picture         =   "frmMain.frx":114E
      Style           =   1  'Graphical
      TabIndex        =   0
      Top             =   105
      Width           =   1605
   End
   Begin VB.Line Line1 
      BorderColor     =   &H8000000E&
      Index           =   1
      X1              =   90
      X2              =   4455
      Y1              =   3150
      Y2              =   3150
   End
   Begin VB.Line Line1 
      Index           =   0
      X1              =   75
      X2              =   4440
      Y1              =   3135
      Y2              =   3135
   End
   Begin VB.Label Label6 
      BackStyle       =   0  'Transparent
      Caption         =   "需要源码可与作者联系.                     1999.01.01"
      Height          =   240
      Left            =   225
      TabIndex        =   9
      Top             =   3990
      Width           =   3630
   End
   Begin VB.Label Label5 
      BackStyle       =   0  'Transparent
      Caption         =   "jyd12@163.net"
      BeginProperty Font 
         Name            =   "MS Sans Serif"
         Size            =   8.25
         Charset         =   0
         Weight          =   700
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      ForeColor       =   &H00FF0000&
      Height          =   270
      Left            =   2520
      TabIndex        =   8
      Top             =   3585
      Width           =   1620
   End
   Begin VB.Label Label4 
      BackStyle       =   0  'Transparent
      Caption         =   "E-mail:"
      Height          =   255
      Left            =   1770
      TabIndex        =   7
      Top             =   3585
      Width           =   855
   End
   Begin VB.Label Label3 
      BackStyle       =   0  'Transparent
      Caption         =   "作者:姜元东"
      BeginProperty Font 
         Name            =   "MS Sans Serif"
         Size            =   12
         Charset         =   0
         Weight          =   400
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      Height          =   255
      Left            =   210
      TabIndex        =   6
      Top             =   3525
      Width           =   1350
   End
   Begin VB.Label Label2 
      BackStyle       =   0  'Transparent
      Caption         =   "免费软件"
      ForeColor       =   &H000000FF&
      Height          =   210
      Left            =   225
      TabIndex        =   5
      Top             =   3255
      Width           =   810
   End
   Begin VB.Label Label1 
      BackStyle       =   0  'Transparent
      Caption         =   "诊断"
      Height          =   225
      Left            =   165
      TabIndex        =   4
      Top             =   1050
      Width           =   480
   End
End
Attribute VB_Name = "frmMain"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit


Private Sub cmdExpertAsk_Click()
        Me.Hide
        frmExpertAsk.Show
End Sub

Private Sub cmdQueryExpert_Click()
        Me.Hide
        frmTellExpert.Show
End Sub

Private Sub cmdWH_Click()
        Me.Hide
        frmBase.Show
End Sub

Private Sub Form_Unload(Cancel As Integer)
        Con.Close
        Set Con = Nothing
        End
End Sub

⌨️ 快捷键说明

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