📄 frmmain.frm
字号:
VERSION 5.00
Object = "{F9043C88-F6F2-101A-A3C9-08002B2F49FB}#1.2#0"; "comdlg32.ocx"
Object = "{831FDD16-0C5C-11D2-A9FC-0000F8754DA1}#2.0#0"; "Mscomctl.ocx"
Begin VB.Form frmMain
Caption = "Knight.OPC.Client.VB"
ClientHeight = 4275
ClientLeft = 165
ClientTop = 735
ClientWidth = 4665
BeginProperty Font
Name = "MS Sans Serif"
Size = 8.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Icon = "frmMain.frx":0000
LinkTopic = "Form1"
ScaleHeight = 4275
ScaleWidth = 4665
StartUpPosition = 3 '窗口缺省
Begin MSComctlLib.ListView lvListView
Height = 2055
Left = 120
TabIndex = 3
Top = 360
Width = 1455
_ExtentX = 2566
_ExtentY = 3625
View = 2
LabelEdit = 1
LabelWrap = -1 'True
HideSelection = -1 'True
FullRowSelect = -1 'True
GridLines = -1 'True
HotTracking = -1 'True
_Version = 393217
ForeColor = -2147483640
BackColor = -2147483643
BorderStyle = 1
Appearance = 1
BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "MS Sans Serif"
Size = 8.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
NumItems = 0
End
Begin MSComctlLib.ImageList lvwbImageList
Left = 2880
Top = 360
_ExtentX = 1005
_ExtentY = 1005
BackColor = -2147483643
ImageWidth = 32
ImageHeight = 32
MaskColor = 12632256
_Version = 393216
BeginProperty Images {2C247F25-8591-11D1-B16A-00C0F0283628}
NumListImages = 1
BeginProperty ListImage1 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":0442
Key = ""
EndProperty
EndProperty
End
Begin VB.Timer Timer1
Enabled = 0 'False
Interval = 345
Left = 2160
Top = 360
End
Begin VB.PictureBox picTitles
Align = 1 'Align Top
Appearance = 0 'Flat
BorderStyle = 0 'None
BeginProperty Font
Name = "宋体"
Size = 9
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H80000008&
Height = 300
Left = 0
ScaleHeight = 300
ScaleWidth = 4665
TabIndex = 1
TabStop = 0 'False
Top = 0
Width = 4665
Begin VB.Label lblTitle
BorderStyle = 1 'Fixed Single
Caption = "ItemList"
BeginProperty Font
Name = "宋体"
Size = 9
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 270
Index = 1
Left = 120
TabIndex = 2
Tag = " 列表视图:"
Top = 15
Width = 3210
End
End
Begin MSComctlLib.StatusBar sbStatusBar
Align = 2 'Align Bottom
Height = 270
Left = 0
TabIndex = 0
Top = 4005
Width = 4665
_ExtentX = 8229
_ExtentY = 476
_Version = 393216
BeginProperty Panels {8E3867A5-8586-11D1-B16A-00C0F0283628}
NumPanels = 3
BeginProperty Panel1 {8E3867AB-8586-11D1-B16A-00C0F0283628}
AutoSize = 1
Object.Width = 2593
Text = "Status"
TextSave = "Status"
EndProperty
BeginProperty Panel2 {8E3867AB-8586-11D1-B16A-00C0F0283628}
Style = 6
AutoSize = 2
TextSave = "2002-10-16"
EndProperty
BeginProperty Panel3 {8E3867AB-8586-11D1-B16A-00C0F0283628}
Style = 5
AutoSize = 2
TextSave = "11:19"
EndProperty
EndProperty
End
Begin MSComDlg.CommonDialog dlgCommonDialog
Left = 1740
Top = 1350
_ExtentX = 847
_ExtentY = 847
_Version = 393216
End
Begin MSComctlLib.ImageList lvwsImageList
Left = 3600
Top = 360
_ExtentX = 1005
_ExtentY = 1005
BackColor = -2147483643
ImageWidth = 16
ImageHeight = 16
MaskColor = 12632256
_Version = 393216
BeginProperty Images {2C247F25-8591-11D1-B16A-00C0F0283628}
NumListImages = 1
BeginProperty ListImage1 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":0894
Key = ""
EndProperty
EndProperty
End
Begin VB.Menu mnuOpc
Caption = "&OPC"
Begin VB.Menu mnuConnect
Caption = "&Connect"
End
Begin VB.Menu mnuDisconnect
Caption = "&Disconnect"
End
Begin VB.Menu mnuSplit
Caption = "-"
End
Begin VB.Menu mnuAddItem
Caption = "&Add Item"
End
Begin VB.Menu mnuRemoveItem
Caption = "&Remove Item"
End
Begin VB.Menu mnuSplit2
Caption = "-"
End
Begin VB.Menu mnuReadItem
Caption = "R&ead Item"
End
Begin VB.Menu mnuWriteItem
Caption = "&Write Item"
End
End
Begin VB.Menu mnuView
Caption = "&View"
Begin VB.Menu mnuViewStatusBar
Caption = "&Status"
Checked = -1 'True
End
End
Begin VB.Menu mnuHelp
Caption = "&Help"
Begin VB.Menu mnuHelpAbout
Caption = "&About"
End
End
End
Attribute VB_Name = "frmMain"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Const NAME_COLUMN = 0
Const TYPE_COLUMN = 1
Const SIZE_COLUMN = 2
Const DATE_COLUMN = 3
Dim mServerName(100) As Byte
Dim mMachineName(100) As Byte
Dim mGroupName(100) As Byte
Dim mbReturn As Boolean
Dim mListItem As listItem 'current selected ListItem
Public Sub Disconnect()
gMainForm.Timer1.Enabled = False
If gConnectionHandle = -1 Then Exit Sub
If gGroupHandle <> -1 Then
Dim i, j As Integer
Dim pItem As CItem
Dim strKey As String
gMainForm.lvListView.ListItems.Clear
For Each pItem In g_ItemCol
KOC_RemoveItem gConnectionHandle, gGroupHandle, pItem.itemHandle
strKey = "k" & Str(pItem.itemHandle)
g_ItemCol.Remove strKey
Next
KOC_RemoveGroup gConnectionHandle, gGroupHandle
End If
KOC_Disconnect (gConnectionHandle)
Set mListItem = Nothing
gConnectionHandle = -1
gGroupHandle = -1
gMainForm.mnuConnect.Enabled = True
gMainForm.mnuDisconnect.Enabled = False
gMainForm.mnuAddItem.Enabled = False
gMainForm.mnuRemoveItem.Enabled = False
gMainForm.mnuReadItem.Enabled = False
gMainForm.mnuWriteItem.Enabled = False
End Sub
Private Sub Form_Load()
Set mListItem = Nothing
gMainForm.mnuConnect.Enabled = True
gMainForm.mnuDisconnect.Enabled = False
gMainForm.mnuAddItem.Enabled = False
gMainForm.mnuRemoveItem.Enabled = False
gMainForm.mnuReadItem.Enabled = False
gMainForm.mnuWriteItem.Enabled = False
gConnectionHandle = -1
gGroupHandle = -1
Me.Left = GetSetting(App.Title, "Settings", "MainLeft", 1000)
Me.Top = GetSetting(App.Title, "Settings", "MainTop", 1000)
Me.Width = GetSetting(App.Title, "Settings", "MainWidth", 6500)
Me.Height = GetSetting(App.Title, "Settings", "MainHeight", 6500)
lvListView.View = lvwReport
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -