aboutForm.frm
资源名称:七八个vb游戏.rar [点击查看]
上传用户:tashmp
上传日期:2010-04-03
资源大小:882k
文件大小:5k
源码类别:
其他游戏
开发平台:
Visual Basic
- VERSION 5.00
- Begin VB.Form aboutForm
- BackColor = &H00FFC0C0&
- BorderStyle = 1 'Fixed Single
- Caption = "关于对话框"
- ClientHeight = 3210
- ClientLeft = 45
- ClientTop = 375
- ClientWidth = 6735
- Icon = "aboutForm.frx":0000
- LinkTopic = "Form1"
- MaxButton = 0 'False
- MinButton = 0 'False
- Picture = "aboutForm.frx":0442
- ScaleHeight = 3210
- ScaleWidth = 6735
- StartUpPosition = 3 '窗口缺省
- Begin VB.CommandButton Command1
- BackColor = &H00FFC0C0&
- Caption = "取消"
- Height = 615
- Left = 4800
- Style = 1 'Graphical
- TabIndex = 6
- Top = 1080
- Width = 1455
- End
- Begin VB.Line Line3
- X1 = 1680
- X2 = 4320
- Y1 = 2520
- Y2 = 2520
- End
- Begin VB.Label Label6
- BackStyle = 0 'Transparent
- Caption = "驾照年审管理系统"
- BeginProperty Font
- Name = "MS Sans Serif"
- Size = 13.5
- Charset = 0
- Weight = 700
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- Height = 375
- Left = 1800
- TabIndex = 5
- Top = 2160
- Width = 3015
- End
- Begin VB.Label Label5
- BackColor = &H00FFC0C0&
- Caption = "项目名称"
- BeginProperty Font
- Name = "MS Sans Serif"
- Size = 12
- Charset = 0
- Weight = 700
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- Height = 255
- Left = 240
- TabIndex = 4
- Top = 2160
- Width = 1215
- End
- Begin VB.Line Line2
- X1 = 1800
- X2 = 2880
- Y1 = 1680
- Y2 = 1680
- End
- Begin VB.Label Label4
- BackStyle = 0 'Transparent
- Caption = "5月30日"
- BeginProperty Font
- Name = "MS Sans Serif"
- Size = 13.5
- Charset = 0
- Weight = 700
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- Height = 375
- Left = 1800
- TabIndex = 3
- Top = 1200
- Width = 1335
- End
- Begin VB.Label Label3
- BackColor = &H00FFC0C0&
- Caption = "完成时间 "
- BeginProperty Font
- Name = "MS Sans Serif"
- Size = 13.5
- Charset = 0
- Weight = 700
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- Height = 495
- Left = 240
- TabIndex = 2
- Top = 1200
- Width = 1335
- End
- Begin VB.Line Line1
- X1 = 1680
- X2 = 2640
- Y1 = 720
- Y2 = 720
- End
- Begin VB.Label Label2
- BackStyle = 0 'Transparent
- Caption = "舒毅"
- BeginProperty Font
- Name = "MS Sans Serif"
- Size = 13.5
- Charset = 0
- Weight = 700
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- Height = 495
- Left = 1800
- TabIndex = 1
- Top = 360
- Width = 735
- End
- Begin VB.Label Label1
- BackColor = &H00FFC0C0&
- Caption = "作者"
- BeginProperty Font
- Name = "MS Sans Serif"
- Size = 13.5
- Charset = 0
- Weight = 700
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- Height = 495
- Left = 360
- TabIndex = 0
- Top = 360
- Width = 735
- End
- End
- Attribute VB_Name = "aboutForm"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Option Explicit
- Private Sub Command1_Click()
- Unload Me
- End Sub
- Private Sub Form_Load()
- Dim revalu As Long
- Me.Picture = LoadPicture("")
- revalu = SetWindowPos(aboutForm.hwnd, HWND_TOPMOST, Me.CurrentX, Me.CurrentY, _
- 1 / 15 * Me.Width, 1 / 15 * Me.Height, SWP_SHOWWINDOW)
- Me.Left = (Screen.Width - Me.Width) / 2 - 150
- Me.Top = (Screen.Height - Me.Height) / 2 - 150
- End Sub