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

📄 testtrendgraph_form1.frm

📁 用vb写的一个opc的客户端控件
💻 FRM
字号:
VERSION 5.00
Object = "{90502D37-8777-11D3-8A75-00A024D2FE82}#1.0#0"; "OPCTrend.ocx"
Begin VB.Form OPCTrendTestForm 
   BorderStyle     =   3  'Fixed Dialog
   Caption         =   "实验"
   ClientHeight    =   4032
   ClientLeft      =   1680
   ClientTop       =   1800
   ClientWidth     =   6420
   LinkTopic       =   "Form1"
   LockControls    =   -1  'True
   MaxButton       =   0   'False
   MinButton       =   0   'False
   ScaleHeight     =   4032
   ScaleWidth      =   6420
   ShowInTaskbar   =   0   'False
   Begin OPCTrend.TrendGraph TrendGraph1 
      Height          =   3735
      Left            =   120
      TabIndex        =   5
      Top             =   120
      Width           =   4695
      _ExtentX        =   8276
      _ExtentY        =   6583
      AutoLink        =   -1  'True
   End
   Begin VB.CommandButton cmdRange 
      Caption         =   "应用(&A):"
      Height          =   495
      Left            =   4920
      TabIndex        =   4
      Top             =   3360
      Width           =   1455
   End
   Begin VB.TextBox txtRangeY 
      Height          =   270
      Left            =   5040
      TabIndex        =   3
      Top             =   2880
      Width           =   1095
   End
   Begin VB.TextBox txtRangeX 
      Height          =   270
      Left            =   5040
      TabIndex        =   1
      Top             =   2160
      Width           =   1095
   End
   Begin VB.Label lblRengeY 
      Caption         =   "Y轴(&Y):"
      Height          =   255
      Left            =   5040
      TabIndex        =   2
      Top             =   2640
      Width           =   1095
   End
   Begin VB.Label lblRengeX 
      Caption         =   "X轴(&X):"
      Height          =   255
      Left            =   5040
      TabIndex        =   0
      Top             =   1920
      Width           =   1095
   End
End
Attribute VB_Name = "OPCTrendTestForm"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub cmdRange_Click()
    TrendGraph1.RangeX = CDbl(txtRangeX.Text)
    TrendGraph1.RangeY = CDbl(txtRangeY.Text)
End Sub

Private Sub Form_Load()
    txtRangeX.Text = CStr(TrendGraph1.RangeX)
    txtRangeY.Text = CStr(TrendGraph1.RangeY)
End Sub

⌨️ 快捷键说明

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