frmAbout.frm
资源名称:lx.rar [点击查看]
上传用户:sdxhx123
上传日期:2022-08-06
资源大小:3453k
文件大小:3k
源码类别:
数值算法/人工智能
开发平台:
Visual Basic
- VERSION 5.00
- Begin VB.Form frmAbout
- BorderStyle = 3 'Fixed Dialog
- Caption = "关于本软件"
- ClientHeight = 4080
- ClientLeft = 45
- ClientTop = 435
- ClientWidth = 4275
- Icon = "frmAbout.frx":0000
- LinkTopic = "Form2"
- MaxButton = 0 'False
- MinButton = 0 'False
- Picture = "frmAbout.frx":030A
- ScaleHeight = 4080
- ScaleWidth = 4275
- ShowInTaskbar = 0 'False
- StartUpPosition = 2 '屏幕中心
- Begin VB.CommandButton cmdOK
- Caption = "确定"
- Height = 495
- Left = 2880
- TabIndex = 2
- Top = 3360
- Width = 855
- End
- Begin VB.Image Image1
- BorderStyle = 1 'Fixed Single
- Height = 855
- Left = 480
- Picture = "frmAbout.frx":9473
- Stretch = -1 'True
- Top = 360
- Width = 3135
- End
- Begin VB.Label Label2
- BackStyle = 0 'Transparent
- Caption = " 南京邮电大学_毕业设计 于维川制作"
- BeginProperty Font
- Name = "楷体_GB2312"
- Size = 10.5
- Charset = 134
- Weight = 400
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- ForeColor = &H00C00000&
- Height = 495
- Left = 960
- TabIndex = 1
- Top = 2160
- Width = 2415
- End
- Begin VB.Label Label1
- BackStyle = 0 'Transparent
- Caption = "回溯法实现背包问题演示程序 文件版本:V1.0.0.0"
- BeginProperty Font
- Name = "隶书"
- Size = 10.5
- Charset = 134
- Weight = 400
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- ForeColor = &H00FF0000&
- Height = 495
- Left = 600
- TabIndex = 0
- Top = 1440
- Width = 2895
- End
- End
- Attribute VB_Name = "frmAbout"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- '====================================
- '用回溯法实现背包问题(2008.4.12)
- 'Copyright (c) 2008 南京邮电大学 毕业设计
- '模块名称:关于本软件
- '摘要:该模块含有该软件的基本信息(如版本等)
- '制作人:于维川
- '====================================
- Option Explicit
- Private Sub cmdOK_Click()
- Unload Me
- End Sub