frmBat.frm
上传用户:sdxhx123
上传日期:2022-08-06
资源大小:3453k
文件大小:2k
开发平台:

Visual Basic

  1. VERSION 5.00
  2. Begin VB.Form frmBat 
  3.    Caption         =   "回溯法讲解"
  4.    ClientHeight    =   8265
  5.    ClientLeft      =   60
  6.    ClientTop       =   450
  7.    ClientWidth     =   9975
  8.    Icon            =   "frmBat.frx":0000
  9.    LinkTopic       =   "Form1"
  10.    Picture         =   "frmBat.frx":030A
  11.    ScaleHeight     =   8265
  12.    ScaleWidth      =   9975
  13.    StartUpPosition =   2  '屏幕中心
  14.    Begin VB.CommandButton Command1 
  15.       Caption         =   "确定"
  16.       BeginProperty Font 
  17.          Name            =   "隶书"
  18.          Size            =   24
  19.          Charset         =   134
  20.          Weight          =   400
  21.          Underline       =   0   'False
  22.          Italic          =   0   'False
  23.          Strikethrough   =   0   'False
  24.       EndProperty
  25.       Height          =   855
  26.       Left            =   8280
  27.       TabIndex        =   1
  28.       Top             =   6120
  29.       Width           =   1575
  30.    End
  31.    Begin VB.Line Line2 
  32.       X1              =   120
  33.       X2              =   7800
  34.       Y1              =   7320
  35.       Y2              =   7320
  36.    End
  37.    Begin VB.Line Line1 
  38.       X1              =   720
  39.       X2              =   720
  40.       Y1              =   360
  41.       Y2              =   7920
  42.    End
  43.    Begin VB.Label Label1 
  44.       BackStyle       =   0  'Transparent
  45.       Caption         =   $"frmBat.frx":D8EA
  46.       BeginProperty Font 
  47.          Name            =   "楷体_GB2312"
  48.          Size            =   15.75
  49.          Charset         =   134
  50.          Weight          =   700
  51.          Underline       =   0   'False
  52.          Italic          =   0   'False
  53.          Strikethrough   =   0   'False
  54.       EndProperty
  55.       Height          =   6615
  56.       Left            =   960
  57.       TabIndex        =   0
  58.       Top             =   480
  59.       Width           =   6855
  60.    End
  61. End
  62. Attribute VB_Name = "frmBat"
  63. Attribute VB_GlobalNameSpace = False
  64. Attribute VB_Creatable = False
  65. Attribute VB_PredeclaredId = True
  66. Attribute VB_Exposed = False
  67. Option Explicit
  68. Private Sub Command1_Click()
  69.     Unload Me
  70. End Sub