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

📄 frhelp.frm

📁 使用 VB 编写访问 WinCC 软件的 SQL server 数据库的代码。
💻 FRM
字号:
VERSION 5.00
Begin VB.Form frHelp 
   BorderStyle     =   0  'Kein
   Caption         =   "Form1"
   ClientHeight    =   5256
   ClientLeft      =   0
   ClientTop       =   0
   ClientWidth     =   6624
   LinkTopic       =   "Form1"
   MaxButton       =   0   'False
   MDIChild        =   -1  'True
   MinButton       =   0   'False
   ScaleHeight     =   5256
   ScaleWidth      =   6624
   ShowInTaskbar   =   0   'False
   Begin VB.CommandButton Command1 
      Caption         =   "Close"
      Height          =   372
      Left            =   5760
      TabIndex        =   1
      Top             =   0
      Width           =   732
   End
   Begin VB.Label laHelp 
      Appearance      =   0  '2D
      BackColor       =   &H80000005&
      BorderStyle     =   1  'Fest Einfach
      BeginProperty Font 
         Name            =   "MS Serif"
         Size            =   9.6
         Charset         =   0
         Weight          =   400
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      ForeColor       =   &H80000008&
      Height          =   4812
      Left            =   120
      TabIndex        =   0
      Top             =   360
      Width           =   6372
   End
End
Attribute VB_Name = "frHelp"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Command1_Click()
Unload Me
End Sub

Private Sub Form_Load()
  Dim s As String
  s = "WinCC Connectivity Pack Sample" & vbCr & _
      "---------------------------------------" & vbCr & _
      "1.a If You want to access data in this computer choose " & vbCr & _
      "   local server, else enter the server name" & vbCr & _
      " " & vbCr & _
      "1.b You can access data from a running WinCC project or " & vbCr & _
      "   -and this should be the usual case- from data that  " & vbCr & _
      "   has been attached by the WinCC Archive Connector " & vbCr & _
      " " & vbCr & _
      "1.c You can select the database with the internal browse" & vbCr & _
      "    or enter the name (DSN) directly " & vbCr & _
      "" & vbCr & _
      "  After connection select to view Alarms or Tag archives" & vbCr & _
      "2. Tagglogging" & vbCr & _
      "3. Alarmlogging" & vbCr & _
      "4. View Alarm statistics after exporting to csv file" & vbCr & _
      "" & vbCr
  laHelp.Caption = s
End Sub

⌨️ 快捷键说明

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