📄 instpage.frm
字号:
VERSION 5.00
Object = "{A1FF59A3-0995-11CF-B3E8-00608C82AA8D}#1.2#0"; "PIXEZOCX.OCX"
Begin VB.Form frmPreInsertCurrentBatch
BorderStyle = 3 'Fixed Dialog
Caption = "Insert Into Current Batch"
ClientHeight = 1440
ClientLeft = 1920
ClientTop = 2745
ClientWidth = 6135
Icon = "Instpage.frx":0000
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
PaletteMode = 1 'UseZOrder
ScaleHeight = 1440
ScaleWidth = 6135
ShowInTaskbar = 0 'False
Begin VB.CommandButton cmdCancel
Cancel = -1 'True
Caption = "Cancel"
Height = 444
Left = 4512
TabIndex = 5
Top = 720
Width = 1164
End
Begin VB.CommandButton cmdOk
Caption = "OK"
Default = -1 'True
Height = 444
Left = 4512
TabIndex = 4
Top = 192
Width = 1164
End
Begin PixezocxLib.PixEzScanControl PixEzScanControl2
Height = 315
Left = 1530
TabIndex = 2
Top = 765
Width = 2700
_Version = 65538
_ExtentX = 4763
_ExtentY = 556
_StockProps = 77
BackColor = 16777215
ControlType = 13
Data = 0
Caption = ""
End
Begin PixezocxLib.PixEzScanControl PixEzScanControl1
Height = 315
Left = 1530
TabIndex = 0
Top = 240
Width = 2700
_Version = 65538
_ExtentX = 4763
_ExtentY = 556
_StockProps = 77
BackColor = 16777215
ControlType = 12
Data = 0
Caption = ""
End
Begin VB.Label Label2
Caption = "Compression"
Height = 300
Left = 192
TabIndex = 3
Top = 816
Width = 1164
End
Begin VB.Label Label1
Caption = "Color Format"
Height = 300
Left = 192
TabIndex = 1
Top = 240
Width = 1164
End
End
Attribute VB_Name = "frmPreInsertCurrentBatch"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Dim lReturn As Long
Dim ctrActivePixEzImage As PixEzImage
Public Function StartForm(image As PixEzImage) As Integer
Set ctrActivePixEzImage = image
Me.Show 1
StartForm = lReturn
Me.Hide
End Function
Private Sub cmdCancel_Click()
lReturn = 0
Me.Hide
End Sub
Private Sub cmdOk_Click()
lReturn = 1
Me.Hide
End Sub
Private Sub Form_Unload(Cancel As Integer)
On Error Resume Next
Set ctrActivePixEzImage = Nothing
End Sub
Public Sub bypass()
cmdOk_Click
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -