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

📄 frmconfig.frm

📁 一个不错的数控源码是vb的
💻 FRM
字号:
VERSION 5.00
Begin VB.Form frmConfig 
   Caption         =   "配置选项"
   ClientHeight    =   5100
   ClientLeft      =   60
   ClientTop       =   450
   ClientWidth     =   5505
   Icon            =   "frmConfig.frx":0000
   LinkTopic       =   "Form1"
   MaxButton       =   0   'False
   MinButton       =   0   'False
   ScaleHeight     =   5100
   ScaleWidth      =   5505
   StartUpPosition =   2  '屏幕中心
   Begin VB.Frame Frame4 
      BackColor       =   &H00C0C0C0&
      Height          =   5265
      Left            =   -120
      TabIndex        =   0
      Top             =   -120
      Width           =   6015
      Begin VB.CommandButton cmdCancel 
         Cancel          =   -1  'True
         Caption         =   "关 闭"
         Height          =   375
         Left            =   4440
         TabIndex        =   13
         Top             =   4560
         Width           =   855
      End
      Begin VB.Frame Frame8 
         BackColor       =   &H00C0C0C0&
         Caption         =   "速度设置"
         ForeColor       =   &H8000000D&
         Height          =   735
         Left            =   240
         TabIndex        =   10
         Top             =   1440
         Width           =   5175
         Begin VB.CommandButton cmdShowVelocityConfig 
            Caption         =   "高级"
            Height          =   255
            Left            =   4200
            TabIndex        =   11
            Top             =   360
            Width           =   735
         End
         Begin VB.Label Label5 
            AutoSize        =   -1  'True
            BackColor       =   &H00C0C0C0&
            Caption         =   "设置加工速度"
            ForeColor       =   &H8000000D&
            Height          =   180
            Left            =   600
            TabIndex        =   12
            Top             =   360
            Width           =   1080
         End
      End
      Begin VB.Frame Frame10 
         BackColor       =   &H00C0C0C0&
         Caption         =   "设备信息"
         ForeColor       =   &H8000000D&
         Height          =   735
         Left            =   240
         TabIndex        =   7
         Top             =   2520
         Width           =   5175
         Begin VB.CommandButton cmdEquipment 
            Caption         =   "高级"
            Height          =   255
            Left            =   4200
            TabIndex        =   8
            Top             =   360
            Width           =   735
         End
         Begin VB.Label Label4 
            AutoSize        =   -1  'True
            BackColor       =   &H00C0C0C0&
            Caption         =   "获得计算机和板卡的信息"
            ForeColor       =   &H8000000D&
            Height          =   180
            Left            =   600
            TabIndex        =   9
            Top             =   360
            Width           =   1980
         End
      End
      Begin VB.Frame Frame11 
         BackColor       =   &H00C0C0C0&
         Caption         =   "关于本软件"
         ForeColor       =   &H8000000D&
         Height          =   735
         Left            =   240
         TabIndex        =   4
         Top             =   3600
         Width           =   5175
         Begin VB.CommandButton cmdShowAbout 
            Caption         =   "关于"
            Height          =   255
            Left            =   4200
            TabIndex        =   5
            Top             =   360
            Width           =   735
         End
         Begin VB.Label Label8 
            AutoSize        =   -1  'True
            BackColor       =   &H00C0C0C0&
            Caption         =   "软件信息"
            ForeColor       =   &H8000000D&
            Height          =   180
            Left            =   600
            TabIndex        =   6
            Top             =   360
            Width           =   720
         End
      End
      Begin VB.Frame Frame1 
         BackColor       =   &H00C0C0C0&
         Caption         =   "工艺设置"
         ForeColor       =   &H8000000D&
         Height          =   735
         Index           =   0
         Left            =   240
         TabIndex        =   1
         Top             =   360
         Width           =   5175
         Begin VB.CommandButton cmdShowBasicConfig 
            Caption         =   "高级"
            Height          =   255
            Left            =   4200
            MaskColor       =   &H8000000D&
            TabIndex        =   2
            Top             =   360
            Width           =   735
         End
         Begin VB.Label Label20 
            AutoSize        =   -1  'True
            BackColor       =   &H00C0C0C0&
            Caption         =   "基工艺本配置"
            ForeColor       =   &H8000000D&
            Height          =   180
            Left            =   600
            TabIndex        =   3
            Top             =   360
            Width           =   1080
         End
      End
   End
End
Attribute VB_Name = "frmConfig"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub cmdCancel_Click()
    Unload frmConfig
End Sub

Private Sub cmdEquipment_Click()
    frmEquipmentInfo.Show 1
End Sub

Private Sub cmdShowAbout_Click()
    frmAbout.Show 1
End Sub

Private Sub cmdShowProcessConfig_Click()
    frmProcessConfig.Show 1
End Sub

Private Sub cmdShowBasicConfig_Click()
    frmBasicConfig.Show 1
End Sub

Private Sub cmdShowVelocityConfig_Click()
    frmVelocityConfig.Show 1
End Sub

Private Sub Command1_Click()
frmHotkey.Show 1
End Sub

⌨️ 快捷键说明

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