上传用户:zhpu1995
上传日期:2013-09-06
资源大小:61151k
文件大小:4k
源码类别:

企业管理

开发平台:

Visual Basic

  1. VERSION 5.00
  2. Begin VB.Form frmAbout 
  3.    BorderStyle     =   3  'Fixed Dialog
  4.    Caption         =   "百利/ERP5.0-电子报表"
  5.    ClientHeight    =   3555
  6.    ClientLeft      =   2340
  7.    ClientTop       =   1935
  8.    ClientWidth     =   5730
  9.    ClipControls    =   0   'False
  10.    Icon            =   "系统关于.frx":0000
  11.    LinkTopic       =   "Form2"
  12.    MaxButton       =   0   'False
  13.    MinButton       =   0   'False
  14.    ScaleHeight     =   2453.724
  15.    ScaleMode       =   0  'User
  16.    ScaleWidth      =   5380.766
  17.    ShowInTaskbar   =   0   'False
  18.    StartUpPosition =   1  '所有者中心
  19.    Begin VB.CommandButton cmdOK 
  20.       Cancel          =   -1  'True
  21.       Caption         =   "确定"
  22.       Default         =   -1  'True
  23.       Height          =   345
  24.       Left            =   4125
  25.       TabIndex        =   0
  26.       Top             =   2625
  27.       Width           =   1500
  28.    End
  29.    Begin VB.CommandButton cmdHxxdHomePage 
  30.       Caption         =   "华夏新达主页"
  31.       Height          =   345
  32.       Left            =   4140
  33.       TabIndex        =   1
  34.       Top             =   3075
  35.       Width           =   1485
  36.    End
  37.    Begin VB.Image Image1 
  38.       BorderStyle     =   1  'Fixed Single
  39.       Height          =   584
  40.       Left            =   120
  41.       Picture         =   "系统关于.frx":1042
  42.       Stretch         =   -1  'True
  43.       Top             =   240
  44.       Width           =   525
  45.    End
  46.    Begin VB.Line Line1 
  47.       BorderColor     =   &H00808080&
  48.       BorderStyle     =   6  'Inside Solid
  49.       Index           =   1
  50.       X1              =   84.515
  51.       X2              =   5309.398
  52.       Y1              =   1687.583
  53.       Y2              =   1687.583
  54.    End
  55.    Begin VB.Label lblTitle 
  56.       Caption         =   "系统版本信息"
  57.       ForeColor       =   &H00000000&
  58.       Height          =   630
  59.       Left            =   1050
  60.       TabIndex        =   3
  61.       Top             =   240
  62.       Width           =   3885
  63.    End
  64.    Begin VB.Line Line1 
  65.       BorderColor     =   &H00FFFFFF&
  66.       BorderWidth     =   2
  67.       Index           =   0
  68.       X1              =   98.6
  69.       X2              =   5309.398
  70.       Y1              =   1697.936
  71.       Y2              =   1697.936
  72.    End
  73.    Begin VB.Label lblVersion 
  74.       Caption         =   "版权所有(C)"
  75.       Height          =   645
  76.       Left            =   1050
  77.       TabIndex        =   4
  78.       Top             =   1080
  79.       Width           =   3885
  80.    End
  81.    Begin VB.Label lblDisclaimer 
  82.       Caption         =   "警告: ..."
  83.       ForeColor       =   &H00000000&
  84.       Height          =   825
  85.       Left            =   255
  86.       TabIndex        =   2
  87.       Top             =   2625
  88.       Width           =   3630
  89.    End
  90. End
  91. Attribute VB_Name = "frmAbout"
  92. Attribute VB_GlobalNameSpace = False
  93. Attribute VB_Creatable = False
  94. Attribute VB_PredeclaredId = True
  95. Attribute VB_Exposed = False
  96. '***********************************************************
  97. '*    模 块 名 称 :系统关于
  98. '*    功 能 描 述 :描述系统版本、版权信息
  99. '*    程序员姓名  :张建忠
  100. '*    最后修改人  :奚俊峰
  101. '*    最后修改时间:2002/01/03
  102. '*    备        注:封版
  103. '***********************************************************
  104. Private Declare Function ShellExecute Lib "shell32.dll" Alias "ShellExecuteA" (ByVal hwnd As Long, ByVal lpOperation As String, ByVal lpFile As String, ByVal lpParameters As String, ByVal lpDirectory As String, ByVal nShowCmd As Long) As Long
  105. Private Sub cmdHxxdHomePage_Click()
  106.     ShellExecute 0, "open", "www.hxxd.com", "", "", 0
  107. End Sub
  108. Private Sub cmdOK_Click()
  109.     Unload Me
  110. End Sub
  111. Private Sub Form_Load()
  112.     
  113.     lblVersion.Caption = "版权所有(C)" + Chr(10) + Chr(10) + "北京华夏新达软件股份有限公司"
  114.     lblTitle.Caption = "系统版本信息" + Chr(10) + Chr(10) + "For Windows9X/2000/NT"
  115.     lblDisclaimer.Caption = "警告:本软件受版权法及国际公约保护,若未经合法授权而擅自复制此软件的全部或部分,将承担严厉的法律责任。"
  116. End Sub