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

Visual Basic

  1. VERSION 5.00
  2. Begin VB.Form frmTeach 
  3.    BorderStyle     =   3  'Fixed Dialog
  4.    Caption         =   "课题讲解"
  5.    ClientHeight    =   9255
  6.    ClientLeft      =   45
  7.    ClientTop       =   435
  8.    ClientWidth     =   13335
  9.    Icon            =   "frmTeach.frx":0000
  10.    LinkTopic       =   "Form1"
  11.    MaxButton       =   0   'False
  12.    MinButton       =   0   'False
  13.    Picture         =   "frmTeach.frx":030A
  14.    ScaleHeight     =   9255
  15.    ScaleWidth      =   13335
  16.    ShowInTaskbar   =   0   'False
  17.    StartUpPosition =   1  '所有者中心
  18.    Begin VB.CommandButton Command3 
  19.       Caption         =   "VB工程演示"
  20.       BeginProperty Font 
  21.          Name            =   "隶书"
  22.          Size            =   15.75
  23.          Charset         =   134
  24.          Weight          =   400
  25.          Underline       =   0   'False
  26.          Italic          =   0   'False
  27.          Strikethrough   =   0   'False
  28.       EndProperty
  29.       Height          =   1695
  30.       Left            =   240
  31.       TabIndex        =   2
  32.       Top             =   5520
  33.       Width           =   2175
  34.    End
  35.    Begin VB.CommandButton Command2 
  36.       Caption         =   "回溯法"
  37.       BeginProperty Font 
  38.          Name            =   "隶书"
  39.          Size            =   15.75
  40.          Charset         =   134
  41.          Weight          =   400
  42.          Underline       =   0   'False
  43.          Italic          =   0   'False
  44.          Strikethrough   =   0   'False
  45.       EndProperty
  46.       Height          =   1695
  47.       Left            =   240
  48.       TabIndex        =   1
  49.       Top             =   2880
  50.       Width           =   2175
  51.    End
  52.    Begin VB.CommandButton Command1 
  53.       Caption         =   "背包问题"
  54.       BeginProperty Font 
  55.          Name            =   "隶书"
  56.          Size            =   15.75
  57.          Charset         =   134
  58.          Weight          =   400
  59.          Underline       =   0   'False
  60.          Italic          =   0   'False
  61.          Strikethrough   =   0   'False
  62.       EndProperty
  63.       Height          =   1575
  64.       Left            =   240
  65.       Picture         =   "frmTeach.frx":D8EA
  66.       TabIndex        =   0
  67.       Top             =   480
  68.       Width           =   2175
  69.    End
  70.    Begin VB.Line Line1 
  71.       X1              =   2880
  72.       X2              =   2880
  73.       Y1              =   240
  74.       Y2              =   8160
  75.    End
  76. End
  77. Attribute VB_Name = "FrmTeach"
  78. Attribute VB_GlobalNameSpace = False
  79. Attribute VB_Creatable = False
  80. Attribute VB_PredeclaredId = True
  81. Attribute VB_Exposed = False
  82. Option Explicit
  83. Private Sub Command1_Click()
  84.     frmknp.Show
  85. End Sub
  86. Private Sub Command2_Click()
  87.     frmBat.Show
  88. End Sub
  89. Private Sub Command3_Click()
  90.     frmVB.Show
  91. End Sub