www.pudn.com > netserver.zip > frmAbout.frm


VERSION 5.00 
Begin VB.Form frmAbout  
   BorderStyle     =   1  'Fixed Single 
   Caption         =   "关于网吧计费器" 
   ClientHeight    =   3510 
   ClientLeft      =   2340 
   ClientTop       =   1935 
   ClientWidth     =   5730 
   ClipControls    =   0   'False 
   ControlBox      =   0   'False 
   LinkTopic       =   "Form2" 
   MaxButton       =   0   'False 
   MinButton       =   0   'False 
   ScaleHeight     =   2422.664 
   ScaleMode       =   0  'User 
   ScaleWidth      =   5380.766 
   StartUpPosition =   1  '所有者中心 
   Begin VB.CommandButton Command1  
      Caption         =   "注   册" 
      Height          =   375 
      Left            =   4080 
      TabIndex        =   8 
      Top             =   3000 
      Width           =   1575 
   End 
   Begin VB.CommandButton cmdOK  
      Cancel          =   -1  'True 
      Caption         =   "确   定" 
      Default         =   -1  'True 
      Height          =   375 
      Left            =   4080 
      TabIndex        =   0 
      Top             =   2520 
      Width           =   1575 
   End 
   Begin VB.Image Image1  
      BorderStyle     =   1  'Fixed Single 
      Height          =   2175 
      Left            =   120 
      Picture         =   "frmAbout.frx":0000 
      Stretch         =   -1  'True 
      Top             =   120 
      Width           =   975 
   End 
   Begin VB.Label Label3  
      Caption         =   "最新情况请访问网址:                          http://lihuasoft.yeah.net" 
      ForeColor       =   &H00FF0000& 
      Height          =   375 
      Left            =   1200 
      MouseIcon       =   "frmAbout.frx":0A26 
      MousePointer    =   99  'Custom 
      TabIndex        =   7 
      Top             =   2040 
      Width           =   3975 
   End 
   Begin VB.Label Label2  
      Caption         =   "作者:李立华  版权所有:鼎智科技发展有限公司" 
      Height          =   255 
      Left            =   1200 
      TabIndex        =   6 
      Top             =   1080 
      Width           =   4215 
   End 
   Begin VB.Label Label1  
      Caption         =   "(For Widows9X/NT/2000)" 
      Height          =   255 
      Left            =   3000 
      TabIndex        =   5 
      Top             =   360 
      Width           =   2175 
   End 
   Begin VB.Line Line1  
      BorderColor     =   &H00808080& 
      BorderStyle     =   6  'Inside Solid 
      Index           =   1 
      X1              =   84.515 
      X2              =   5309.398 
      Y1              =   1687.582 
      Y2              =   1687.582 
   End 
   Begin VB.Label lblDescription  
      Caption         =   "本程序适用于计算机网吧、游戏厅等系统。    主要应用于计费,和计算机管理。" 
      ForeColor       =   &H00000000& 
      Height          =   450 
      Left            =   1200 
      TabIndex        =   1 
      Top             =   1485 
      Width           =   3765 
   End 
   Begin VB.Label lblTitle  
      Caption         =   "网吧计费器" 
      BeginProperty Font  
         Name            =   "楷体_GB2312" 
         Size            =   15.75 
         Charset         =   134 
         Weight          =   700 
         Underline       =   0   'False 
         Italic          =   -1  'True 
         Strikethrough   =   0   'False 
      EndProperty 
      ForeColor       =   &H00008000& 
      Height          =   480 
      Left            =   1080 
      TabIndex        =   3 
      Top             =   240 
      Width           =   1845 
   End 
   Begin VB.Line Line1  
      BorderColor     =   &H00FFFFFF& 
      BorderWidth     =   2 
      Index           =   0 
      X1              =   98.6 
      X2              =   5309.398 
      Y1              =   1697.935 
      Y2              =   1697.935 
   End 
   Begin VB.Label lblVersion  
      Caption         =   "版本1.00 (服务器标准版)" 
      Height          =   225 
      Left            =   1200 
      TabIndex        =   4 
      Top             =   780 
      Width           =   3885 
   End 
   Begin VB.Label lblDisclaimer  
      Caption         =   $"frmAbout.frx":0D30 
      ForeColor       =   &H00000000& 
      Height          =   825 
      Left            =   120 
      TabIndex        =   2 
      Top             =   2640 
      Width           =   3855 
   End 
End 
Attribute VB_Name = "frmAbout" 
Attribute VB_GlobalNameSpace = False 
Attribute VB_Creatable = False 
Attribute VB_PredeclaredId = True 
Attribute VB_Exposed = False 
 
 
Private Sub cmdOK_Click() 
  Unload Me 
End Sub 
 
Private Sub Command1_Click() 
Unload Me 
frmRegSoft.Show 
 
End Sub 
 
Private Sub Form_Load() 
'    Me.Caption = "关于 " & App.Title 
'    lblVersion.Caption = "版本 " & App.Major & "." & App.Minor & "." & App.Revision 
'    lblTitle.Caption = App.Title 
'If ISRegRight = True Then Command1.Visible = False 
End Sub