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

📄 inputtext.frm

📁 神经网络输入输出运算
💻 FRM
字号:
VERSION 5.00
Begin VB.Form inputtext 
   Caption         =   "输入"
   ClientHeight    =   3105
   ClientLeft      =   60
   ClientTop       =   450
   ClientWidth     =   4260
   LinkTopic       =   "Form2"
   ScaleHeight     =   3105
   ScaleWidth      =   4260
   StartUpPosition =   3  '窗口缺省
   Begin VB.CommandButton Command2 
      Caption         =   "返回"
      Height          =   375
      Left            =   3480
      TabIndex        =   22
      Top             =   240
      Width           =   615
   End
   Begin VB.CommandButton Command1 
      Caption         =   "确定"
      Height          =   375
      Left            =   2400
      TabIndex        =   21
      Top             =   240
      Width           =   615
   End
   Begin VB.TextBox txtk 
      Height          =   270
      Left            =   480
      TabIndex        =   19
      Top             =   240
      Width           =   615
   End
   Begin VB.Frame Frame2 
      Caption         =   "隶属度"
      Height          =   1815
      Left            =   2160
      TabIndex        =   2
      Top             =   1080
      Width           =   1935
      Begin VB.TextBox txtY04 
         Height          =   270
         Left            =   480
         TabIndex        =   17
         Top             =   1440
         Width           =   975
      End
      Begin VB.TextBox txtY03 
         Height          =   270
         Left            =   480
         TabIndex        =   16
         Top             =   1080
         Width           =   975
      End
      Begin VB.TextBox txtY02 
         Height          =   270
         Left            =   480
         TabIndex        =   15
         Top             =   720
         Width           =   975
      End
      Begin VB.TextBox txtY01 
         Height          =   270
         Left            =   480
         TabIndex        =   14
         Top             =   360
         Width           =   975
      End
      Begin VB.Label Label8 
         Caption         =   "Y04"
         Height          =   255
         Left            =   120
         TabIndex        =   13
         Top             =   1440
         Width           =   255
      End
      Begin VB.Label Label7 
         Caption         =   "Y03"
         Height          =   255
         Left            =   120
         TabIndex        =   12
         Top             =   1080
         Width           =   255
      End
      Begin VB.Label Label6 
         Caption         =   "Y02"
         Height          =   255
         Left            =   120
         TabIndex        =   11
         Top             =   720
         Width           =   255
      End
      Begin VB.Label Label5 
         Caption         =   "Y01"
         Height          =   255
         Left            =   120
         TabIndex        =   10
         Top             =   360
         Width           =   255
      End
   End
   Begin VB.Frame Frame1 
      Caption         =   "特征值"
      Height          =   1815
      Left            =   240
      TabIndex        =   0
      Top             =   1080
      Width           =   1695
      Begin VB.TextBox txtX4 
         Height          =   270
         Left            =   360
         TabIndex        =   9
         Top             =   1440
         Width           =   975
      End
      Begin VB.TextBox txtX3 
         Height          =   270
         Left            =   360
         TabIndex        =   8
         Top             =   1080
         Width           =   975
      End
      Begin VB.TextBox txtX2 
         Height          =   270
         Left            =   360
         TabIndex        =   7
         Top             =   720
         Width           =   975
      End
      Begin VB.TextBox txtX1 
         Height          =   270
         Left            =   360
         TabIndex        =   1
         Top             =   345
         Width           =   975
      End
      Begin VB.Label Label4 
         Caption         =   "X4"
         Height          =   255
         Left            =   120
         TabIndex        =   6
         Top             =   1440
         Width           =   255
      End
      Begin VB.Label Label3 
         Caption         =   "X3"
         Height          =   375
         Left            =   120
         TabIndex        =   5
         Top             =   1080
         Width           =   255
      End
      Begin VB.Label Label2 
         Caption         =   "X2"
         Height          =   255
         Left            =   120
         TabIndex        =   4
         Top             =   720
         Width           =   375
      End
      Begin VB.Label Label1 
         Caption         =   "X1"
         Height          =   255
         Left            =   120
         TabIndex        =   3
         Top             =   360
         Width           =   375
      End
   End
   Begin VB.Label Label10 
      Caption         =   "次训练"
      Height          =   255
      Left            =   1200
      TabIndex        =   20
      Top             =   240
      Width           =   855
   End
   Begin VB.Label Label9 
      Caption         =   "第"
      Height          =   255
      Left            =   240
      TabIndex        =   18
      Top             =   240
      Width           =   255
   End
End
Attribute VB_Name = "inputtext"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit

Private Sub Command1_Click()
X(1) = txtX1.Text: X(2) = txtX2.Text: X(3) = txtX3.Text: X(4) = txtX4.Text
Y0(1) = txtY01.Text: Y0(2) = txtY02.Text: Y0(3) = txtY03.Text: Y0(4) = txtY04.Text
Hide
xunlian.Show
End Sub

Private Sub Command2_Click()
Hide
xunlian.Show
End Sub

Private Sub Form_Load()
AutoRedraw = True
End Sub

⌨️ 快捷键说明

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