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

Visual Basic

  1. VERSION 5.00
  2. Begin VB.Form frmAbout 
  3.    BorderStyle     =   3  'Fixed Dialog
  4.    Caption         =   "关于本软件"
  5.    ClientHeight    =   4080
  6.    ClientLeft      =   45
  7.    ClientTop       =   435
  8.    ClientWidth     =   4275
  9.    Icon            =   "frmAbout.frx":0000
  10.    LinkTopic       =   "Form2"
  11.    MaxButton       =   0   'False
  12.    MinButton       =   0   'False
  13.    Picture         =   "frmAbout.frx":030A
  14.    ScaleHeight     =   4080
  15.    ScaleWidth      =   4275
  16.    ShowInTaskbar   =   0   'False
  17.    StartUpPosition =   2  '屏幕中心
  18.    Begin VB.CommandButton cmdOK 
  19.       Caption         =   "确定"
  20.       Height          =   495
  21.       Left            =   2880
  22.       TabIndex        =   2
  23.       Top             =   3360
  24.       Width           =   855
  25.    End
  26.    Begin VB.Image Image1 
  27.       BorderStyle     =   1  'Fixed Single
  28.       Height          =   855
  29.       Left            =   480
  30.       Picture         =   "frmAbout.frx":9473
  31.       Stretch         =   -1  'True
  32.       Top             =   360
  33.       Width           =   3135
  34.    End
  35.    Begin VB.Label Label2 
  36.       BackStyle       =   0  'Transparent
  37.       Caption         =   " 南京邮电大学_毕业设计         于维川制作"
  38.       BeginProperty Font 
  39.          Name            =   "楷体_GB2312"
  40.          Size            =   10.5
  41.          Charset         =   134
  42.          Weight          =   400
  43.          Underline       =   0   'False
  44.          Italic          =   0   'False
  45.          Strikethrough   =   0   'False
  46.       EndProperty
  47.       ForeColor       =   &H00C00000&
  48.       Height          =   495
  49.       Left            =   960
  50.       TabIndex        =   1
  51.       Top             =   2160
  52.       Width           =   2415
  53.    End
  54.    Begin VB.Label Label1 
  55.       BackStyle       =   0  'Transparent
  56.       Caption         =   "回溯法实现背包问题演示程序      文件版本:V1.0.0.0"
  57.       BeginProperty Font 
  58.          Name            =   "隶书"
  59.          Size            =   10.5
  60.          Charset         =   134
  61.          Weight          =   400
  62.          Underline       =   0   'False
  63.          Italic          =   0   'False
  64.          Strikethrough   =   0   'False
  65.       EndProperty
  66.       ForeColor       =   &H00FF0000&
  67.       Height          =   495
  68.       Left            =   600
  69.       TabIndex        =   0
  70.       Top             =   1440
  71.       Width           =   2895
  72.    End
  73. End
  74. Attribute VB_Name = "frmAbout"
  75. Attribute VB_GlobalNameSpace = False
  76. Attribute VB_Creatable = False
  77. Attribute VB_PredeclaredId = True
  78. Attribute VB_Exposed = False
  79. '====================================
  80. '用回溯法实现背包问题(2008.4.12)
  81. 'Copyright (c) 2008  南京邮电大学 毕业设计
  82. '模块名称:关于本软件
  83. '摘要:该模块含有该软件的基本信息(如版本等)
  84. '制作人:于维川
  85. '====================================
  86. Option Explicit
  87. Private Sub cmdOK_Click()
  88.     Unload Me
  89. End Sub