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

📄 f_gfst.frm

📁 中国象棋支持网络功能(VB)
💻 FRM
字号:
VERSION 5.00
Begin VB.Form f_Gfst 
   BorderStyle     =   1  'Fixed Single
   Caption         =   "Chinese Chess"
   ClientHeight    =   1740
   ClientLeft      =   45
   ClientTop       =   330
   ClientWidth     =   2175
   Icon            =   "f_Gfst.frx":0000
   LinkTopic       =   "Form1"
   MaxButton       =   0   'False
   MinButton       =   0   'False
   ScaleHeight     =   1740
   ScaleWidth      =   2175
   StartUpPosition =   3  'Windows Default
   Begin VB.CommandButton m_cmdGfstOk 
      Caption         =   "Ok"
      Height          =   255
      Left            =   600
      TabIndex        =   3
      Top             =   1320
      Width           =   975
   End
   Begin VB.Frame Frame1 
      Height          =   1215
      Left            =   120
      TabIndex        =   0
      Top             =   0
      Width           =   1935
      Begin VB.OptionButton opt_s 
         Caption         =   "双"
         Height          =   255
         Left            =   360
         TabIndex        =   2
         Top             =   720
         Width           =   1095
      End
      Begin VB.OptionButton opt_d 
         Caption         =   "单"
         Height          =   255
         Left            =   360
         TabIndex        =   1
         Top             =   360
         Width           =   1215
      End
   End
End
Attribute VB_Name = "f_Gfst"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit

Private Sub Form_Load()
opt_d.Value = True
End Sub

Private Sub m_cmdGfstOk_Click()
If opt_d.Value = True Then
main.m_Set = "D"
Else
main.m_Set = "S"
End If
Unload f_Gfst
End Sub

⌨️ 快捷键说明

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