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

📄 frmhelp.frm

📁 针对于订房中心的酒店合同管理。管理权限有管理员和业务员等。
💻 FRM
字号:
VERSION 5.00
Begin VB.Form FrmHelp 
   BorderStyle     =   1  'Fixed Single
   Caption         =   "永辉服务有限公司合同管理系统介绍"
   ClientHeight    =   3645
   ClientLeft      =   45
   ClientTop       =   330
   ClientWidth     =   7530
   Icon            =   "FrmHelp.frx":0000
   LinkTopic       =   "Form1"
   MaxButton       =   0   'False
   MinButton       =   0   'False
   ScaleHeight     =   3645
   ScaleWidth      =   7530
   StartUpPosition =   2  '屏幕中心
   Begin VB.CommandButton CmdAbout 
      Caption         =   "关于(&A)"
      Height          =   375
      Left            =   6120
      TabIndex        =   3
      Top             =   720
      Width           =   975
   End
   Begin VB.CommandButton CmdOK 
      Caption         =   "确定(&D)"
      Height          =   375
      Left            =   6120
      TabIndex        =   2
      Top             =   240
      Width           =   975
   End
   Begin VB.Label lblDescription 
      Height          =   2175
      Left            =   1200
      TabIndex        =   5
      Top             =   1200
      Width           =   5055
   End
   Begin VB.Label Label3 
      BackStyle       =   0  'Transparent
      Caption         =   "系统介绍:"
      Height          =   255
      Left            =   1320
      TabIndex        =   4
      Top             =   840
      Width           =   975
   End
   Begin VB.Label Label2 
      BackStyle       =   0  'Transparent
      Caption         =   "合同管理系统"
      Height          =   255
      Left            =   4440
      TabIndex        =   1
      Top             =   480
      Width           =   1215
   End
   Begin VB.Label Label1 
      BackStyle       =   0  'Transparent
      Caption         =   "广州永辉服务有限公司"
      BeginProperty Font 
         Name            =   "宋体"
         Size            =   14.25
         Charset         =   134
         Weight          =   700
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      Height          =   375
      Left            =   1320
      TabIndex        =   0
      Top             =   240
      Width           =   3135
   End
   Begin VB.Image Image1 
      Height          =   900
      Left            =   120
      Picture         =   "FrmHelp.frx":3072
      Top             =   120
      Width           =   900
   End
End
Attribute VB_Name = "FrmHelp"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub CmdAbout_Click()
Unload Me
Load frmAbout
frmAbout.Show vbModal
End Sub

Private Sub CmdOK_Click()
Unload Me
End Sub

Private Sub Form_Load()
    Me.Left = (frmMDI.Width - Me.Width) / 2
    Me.Top = (frmMDI.Height - Me.Height) / 4
    Me.Caption = "关于 " & App.Title
    lblDescription.Caption = "本系统实现了合同管理信息系统的管理功能," _
        & "以及业务员与管理员权限等,合同查找加入删除修改。" _
        & "由掏沙工作室Callosity制作,联系QQ:35372128" _
        & "谢谢使用本软件! ~_~"
End Sub

⌨️ 快捷键说明

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