⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 frm_about.frm

📁 商品进销存管理系统 采用VB和SQL2000开发 具有很强的实用性
💻 FRM
字号:
VERSION 5.00
Begin VB.Form frm_about 
   BorderStyle     =   3  'Fixed Dialog
   Caption         =   "关于我的应用程序"
   ClientHeight    =   4530
   ClientLeft      =   2340
   ClientTop       =   1935
   ClientWidth     =   6180
   ClipControls    =   0   'False
   Icon            =   "frm_about.frx":0000
   LinkTopic       =   "Form2"
   MaxButton       =   0   'False
   MinButton       =   0   'False
   ScaleHeight     =   3126.687
   ScaleMode       =   0  'User
   ScaleWidth      =   5803.339
   ShowInTaskbar   =   0   'False
   StartUpPosition =   1  '所有者中心
   Begin VB.CommandButton cmdOK 
      Cancel          =   -1  'True
      Caption         =   "确定"
      Default         =   -1  'True
      Height          =   345
      Left            =   4260
      TabIndex        =   0
      Top             =   3915
      Width           =   1500
   End
   Begin VB.Image imaIcon 
      Height          =   735
      Left            =   195
      Stretch         =   -1  'True
      Top             =   285
      Width           =   870
   End
   Begin VB.Line Line1 
      BorderColor     =   &H00808080&
      BorderStyle     =   6  'Inside Solid
      Index           =   1
      X1              =   1281.805
      X2              =   5596.748
      Y1              =   2515.844
      Y2              =   2515.844
   End
   Begin VB.Label lblDes 
      Caption         =   "应用程序描述"
      ForeColor       =   &H00000000&
      Height          =   1575
      Left            =   1305
      TabIndex        =   1
      Top             =   1935
      Width           =   3885
   End
   Begin VB.Label lblTitle 
      Caption         =   "应用程序标题"
      BeginProperty Font 
         Name            =   "宋体"
         Size            =   12
         Charset         =   134
         Weight          =   400
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      ForeColor       =   &H00000000&
      Height          =   345
      Left            =   1305
      TabIndex        =   2
      Top             =   225
      Width           =   4950
   End
   Begin VB.Line Line1 
      BorderColor     =   &H00FFFFFF&
      BorderWidth     =   2
      Index           =   0
      X1              =   1281.805
      X2              =   5596.748
      Y1              =   2526.198
      Y2              =   2515.844
   End
   Begin VB.Label lblVersion 
      Caption         =   "版本"
      Height          =   585
      Left            =   1305
      TabIndex        =   3
      Top             =   660
      Width           =   3885
   End
End
Attribute VB_Name = "frm_about"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
'*************************************************************************
'**模 块 名:frm_about
'**版权说明:吉林省明日科技有限公司享有本软件的所有版权,如果本软件用于商
'**          业用途,必须经过吉林省明日科技有限公司授权。如果提供网上免费
'**          下载,必须经过吉林省明日科技有限公司授权,并保证程序的完整,
'**          不得修改代码、注释和相关内容,否则,我公司将追究其法律责任
'**网    址:www.mingrisoft.com  价值无限,服务无限
'**电    话:(0431)84978981,84978982
'**创 建 人:明日科技
'**日    期:2007-10-31
'**修 改 人:MRLBB
'**日    期:2007-10-31
'**描    述:
'*************************************************************************

Private Sub Form_Load()
    Me.Caption = "关于 " & App.Title
    lblTitle.Caption = Me.Caption
    imaIcon.Picture = Me.Icon
    lblVersion.Caption = "FOR WINDOWS 9X/2000/NT" _
                         & Chr(10) & "Copyright [C] 2007-2008"
    lblDes.Caption = "吉林省明日科技有限公司出品" _
                     & Chr(10) & Chr(10) & "地址:长春市东盛大街89号亚泰广场C座2205室" _
                     & Chr(10) & Chr(10) & "电话:(0431)84978981,84978982" _
                     & Chr(10) & Chr(10) & "网址:http://www.mingrisoft.com"

End Sub
Private Sub cmdOK_Click()
  Unload Me
End Sub

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -