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

📄 dlgabout.frm

📁 用vb写的一个opc的客户端控件
💻 FRM
字号:
VERSION 5.00
Begin VB.Form dlgAbout 
   BorderStyle     =   3  'Fixed Dialog
   Caption         =   "有关TrendGraph控件"
   ClientHeight    =   2448
   ClientLeft      =   2340
   ClientTop       =   1932
   ClientWidth     =   6240
   ClipControls    =   0   'False
   LinkTopic       =   "Form2"
   LockControls    =   -1  'True
   MaxButton       =   0   'False
   MinButton       =   0   'False
   ScaleHeight     =   1687.582
   ScaleMode       =   0  'User
   ScaleWidth      =   5859.683
   ShowInTaskbar   =   0   'False
   Begin VB.PictureBox picIcon 
      Appearance      =   0  'Flat
      BackColor       =   &H80000005&
      BorderStyle     =   0  'None
      ClipControls    =   0   'False
      ForeColor       =   &H80000008&
      Height          =   1320
      Left            =   360
      Picture         =   "dlgAbout.frx":0000
      ScaleHeight     =   927.08
      ScaleMode       =   0  'User
      ScaleWidth      =   2138.605
      TabIndex        =   1
      Top             =   120
      Width           =   3045
   End
   Begin VB.CommandButton cmdOK 
      Cancel          =   -1  'True
      Caption         =   "确认"
      Default         =   -1  'True
      Height          =   345
      Left            =   4815
      TabIndex        =   0
      Top             =   705
      Width           =   900
   End
   Begin VB.Label lblCopyright 
      Caption         =   "版权"
      Height          =   345
      Left            =   960
      TabIndex        =   3
      Top             =   1890
      Width           =   3690
   End
   Begin VB.Label lblVersion 
      Caption         =   "版本"
      Height          =   345
      Left            =   975
      TabIndex        =   2
      Top             =   1590
      Width           =   3615
   End
End
Attribute VB_Name = "dlgAbout"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Form_Load()
    lblVersion.Caption = App.Title & " 控件版本" & App.Major & "." & App.Minor & " Rev" & App.Revision
    lblCopyright.Caption = App.LegalCopyright
End Sub

Private Sub cmdOK_Click()
    Unload Me
End Sub

Private Sub lblCopyright_Click()

End Sub

⌨️ 快捷键说明

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