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

📄 frmcorrect.frm

📁 生产数据经常用到文本及数据库方式, 本程序将文本数据转换成数据库, 非常使用
💻 FRM
字号:
VERSION 5.00
Begin VB.Form FrmChange 
   Caption         =   "Make Change"
   ClientHeight    =   2520
   ClientLeft      =   60
   ClientTop       =   345
   ClientWidth     =   3825
   LinkTopic       =   "Form1"
   ScaleHeight     =   2520
   ScaleWidth      =   3825
   StartUpPosition =   3  'Windows Default
   Begin VB.CommandButton cmdOK 
      Caption         =   "OK"
      Height          =   375
      Left            =   1200
      TabIndex        =   8
      Top             =   1920
      Width           =   1335
   End
   Begin VB.TextBox txtItemNo 
      Height          =   285
      Left            =   1200
      TabIndex        =   3
      Text            =   "Text1"
      Top             =   240
      Width           =   2295
   End
   Begin VB.TextBox txtLicence 
      Height          =   285
      Left            =   1200
      TabIndex        =   2
      Text            =   "Text1"
      Top             =   600
      Width           =   2295
   End
   Begin VB.TextBox txtIMEI 
      Height          =   285
      Left            =   1200
      TabIndex        =   1
      Text            =   "Text1"
      Top             =   960
      Width           =   2295
   End
   Begin VB.TextBox txtSN 
      Height          =   285
      Left            =   1200
      TabIndex        =   0
      Text            =   "Text1"
      Top             =   1320
      Width           =   2295
   End
   Begin VB.Label lblLabels 
      AutoSize        =   -1  'True
      Caption         =   "ITem No:"
      Height          =   195
      Index           =   0
      Left            =   360
      TabIndex        =   7
      Top             =   300
      Width           =   660
   End
   Begin VB.Label lblLabels 
      AutoSize        =   -1  'True
      Caption         =   "Licence:"
      Height          =   195
      Index           =   1
      Left            =   360
      TabIndex        =   6
      Top             =   615
      Width           =   615
   End
   Begin VB.Label lblLabels 
      AutoSize        =   -1  'True
      Caption         =   "IMEI:"
      Height          =   195
      Index           =   2
      Left            =   360
      TabIndex        =   5
      Top             =   945
      Width           =   375
   End
   Begin VB.Label Label1 
      AutoSize        =   -1  'True
      Caption         =   "SN:"
      Height          =   195
      Left            =   360
      TabIndex        =   4
      Top             =   1320
      Width           =   270
   End
End
Attribute VB_Name = "FrmChange"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub cmdOK_Click()
frmmain.lRecordCounter = CLng(txtItemNo.Text)
frmmain.sLicenceTemp = Trim(txtLicence.Text)
frmmain.sIMEITemp = Trim(txtIMEI.Text)
frmmain.sSNTemp = Trim(txtSN.Text)
Unload Me
End Sub

Private Sub Form_Load()
txtItemNo.Text = Str(frmmain.lRecordCounter)
txtLicence.Text = frmmain.sLicenceTemp
txtIMEI.Text = frmmain.sIMEITemp
txtSN.Text = frmmain.sSNTemp
End Sub

⌨️ 快捷键说明

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