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

📄 frmdivide.frm

📁 品图游戏
💻 FRM
字号:
VERSION 5.00
Object = "{86CF1D34-0C5F-11D2-A9FC-0000F8754DA1}#2.0#0"; "MSCOMCT2.OCX"
Begin VB.Form frmDivide 
   BorderStyle     =   3  'Fixed Dialog
   Caption         =   "指定行列数"
   ClientHeight    =   1200
   ClientLeft      =   45
   ClientTop       =   330
   ClientWidth     =   3465
   Icon            =   "frmDivide.frx":0000
   LinkTopic       =   "Form1"
   MaxButton       =   0   'False
   MinButton       =   0   'False
   ScaleHeight     =   1200
   ScaleWidth      =   3465
   ShowInTaskbar   =   0   'False
   StartUpPosition =   1  '所有者中心
   Begin VB.CommandButton cmdOK 
      Caption         =   "确定"
      Height          =   375
      Left            =   2280
      TabIndex        =   6
      Top             =   360
      Width           =   975
   End
   Begin MSComCtl2.UpDown UpDownCols 
      Height          =   375
      Left            =   1560
      TabIndex        =   5
      Top             =   600
      Width           =   240
      _ExtentX        =   423
      _ExtentY        =   661
      _Version        =   393216
      Value           =   4
      BuddyControl    =   "txtCols"
      BuddyDispid     =   196612
      OrigLeft        =   2280
      OrigTop         =   960
      OrigRight       =   2520
      OrigBottom      =   1815
      Max             =   7
      Min             =   3
      SyncBuddy       =   -1  'True
      BuddyProperty   =   65547
      Enabled         =   -1  'True
   End
   Begin MSComCtl2.UpDown UpDownRows 
      Height          =   390
      Left            =   1560
      TabIndex        =   4
      Top             =   120
      Width           =   240
      _ExtentX        =   423
      _ExtentY        =   688
      _Version        =   393216
      Value           =   4
      BuddyControl    =   "txtrows"
      BuddyDispid     =   196610
      OrigLeft        =   1576
      OrigTop         =   120
      OrigRight       =   1816
      OrigBottom      =   510
      Max             =   7
      Min             =   3
      SyncBuddy       =   -1  'True
      BuddyProperty   =   65547
      Enabled         =   -1  'True
   End
   Begin VB.TextBox txtCols 
      Height          =   375
      Left            =   720
      Locked          =   -1  'True
      TabIndex        =   3
      Text            =   "4"
      Top             =   600
      Width           =   855
   End
   Begin VB.TextBox txtRows 
      Height          =   390
      Left            =   720
      Locked          =   -1  'True
      TabIndex        =   1
      Text            =   "4"
      Top             =   120
      Width           =   855
   End
   Begin VB.Label Label2 
      Caption         =   "列数"
      Height          =   375
      Left            =   120
      TabIndex        =   2
      Top             =   600
      Width           =   495
   End
   Begin VB.Label Label1 
      Caption         =   "行数"
      Height          =   255
      Left            =   120
      TabIndex        =   0
      Top             =   240
      Width           =   495
   End
End
Attribute VB_Name = "frmDivide"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit


Private Sub cmdOK_Click()
    frmMain.Rows = txtRows.Text
    frmMain.Cols = txtCols.Text
    Unload Me
End Sub

⌨️ 快捷键说明

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