frmmain.frm

来自「StoneChess棋牌类游戏开发控件,供初学者研究使用」· FRM 代码 · 共 49 行

FRM
49
字号
VERSION 5.00
Begin VB.Form frmMain 
   BorderStyle     =   3  'Fixed Dialog
   Caption         =   "Form1"
   ClientHeight    =   1995
   ClientLeft      =   1650
   ClientTop       =   1545
   ClientWidth     =   5655
   LinkTopic       =   "Form1"
   MaxButton       =   0   'False
   MinButton       =   0   'False
   ScaleHeight     =   1995
   ScaleWidth      =   5655
   ShowInTaskbar   =   0   'False
   Begin VB.CommandButton Command1 
      Caption         =   "桥牌开发控件"
      Height          =   435
      Index           =   1
      Left            =   1200
      TabIndex        =   1
      Top             =   840
      Width           =   2835
   End
   Begin VB.CommandButton Command1 
      Caption         =   "围棋开发控件"
      Height          =   435
      Index           =   0
      Left            =   1200
      TabIndex        =   0
      Top             =   360
      Width           =   2835
   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 Command1_Click(Index As Integer)
Select Case Index
Case 0
    frmIGO.Show 1
Case 1
    frmCard.Show 1
End Select
End Sub

⌨️ 快捷键说明

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