📄 frmreplsynchronizesub.ebf
字号:
VERSION 5.00
Begin VB.Form frmReplSynchronizeSub
Appearance = 0 'Flat
BackColor = &H00FFC0C0&
Caption = "复制 -订阅者属性"
ClientHeight = 2280
ClientLeft = 60
ClientTop = 345
ClientWidth = 3585
ForeColor = &H80000008&
ScaleHeight = 2280
ScaleWidth = 3585
SIPBehavior = 1 'vbSIPAutomatic
Begin VBCE.Frame Frame4
Height = 1485
Left = 0
TabIndex = 0
Top = 0
Width = 3540
_cx = 6244
_cy = 2619
BackColor = 16761024
BorderStyle = 1
Caption = "订阅属性"
Enabled = -1 'True
BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "宋体"
Size = 9
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = -2147483640
ClipControls = -1 'True
Begin VBCE.Label Label7
Height = 255
Left = 120
TabIndex = 4
Top = 255
Width = 840
_cx = 1482
_cy = 450
AutoSize = 0 'False
BackColor = 16761024
BackStyle = 1
BorderStyle = 0
Caption = "订阅者"
Enabled = -1 'True
BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "宋体"
Size = 9
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = -2147483640
Alignment = 0
UseMnemonic = -1 'True
WordWrap = 0 'False
End
Begin VBCE.TextBox txtSubscriber
Height = 270
Left = 1080
TabIndex = 3
Top = 270
Width = 2370
_cx = 4180
_cy = 476
BackColor = -2147483643
BorderStyle = 1
Enabled = -1 'True
BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "宋体"
Size = 9
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = -2147483640
Text = ""
Alignment = 0
HideSelection = -1 'True
Locked = 0 'False
MaxLength = 0
MultiLine = 0 'False
PasswordChar = ""
ScrollBars = 0
End
Begin VBCE.Label Label8
Height = 180
Left = 120
TabIndex = 2
Top = 600
Width = 930
_cx = 1640
_cy = 318
AutoSize = -1 'True
BackColor = 16761024
BackStyle = 1
BorderStyle = 0
Caption = "连接字符串"
Enabled = -1 'True
BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "宋体"
Size = 9
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = -2147483640
Alignment = 0
UseMnemonic = -1 'True
WordWrap = 0 'False
End
Begin VBCE.TextBox txtSubscriberConnectionString
Height = 735
Left = 1080
TabIndex = 1
Top = 720
Width = 2370
_cx = 4180
_cy = 1296
BackColor = -2147483643
BorderStyle = 1
Enabled = -1 'True
BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "宋体"
Size = 9
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = -2147483640
Text = ""
Alignment = 0
HideSelection = -1 'True
Locked = 0 'False
MaxLength = 0
MultiLine = -1 'True
PasswordChar = ""
ScrollBars = 0
End
End
Begin VBCE.CommandButton cmdPrev
Height = 255
Left = 1080
TabIndex = 7
Top = 1800
Width = 840
_cx = 1482
_cy = 450
BackColor = 12632256
Caption = "上一步"
Enabled = -1 'True
BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "宋体"
Size = 9
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Style = 0
End
Begin VB.Line Line2
X1 = 0
X2 = 3600
Y1 = 1680
Y2 = 1680
End
Begin VBCE.CommandButton cmdOK
Height = 255
Left = 2040
TabIndex = 6
TabStop = 0 'False
Top = 1785
Width = 840
_cx = 1482
_cy = 450
BackColor = 12632256
Caption = "完成"
Enabled = -1 'True
BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "宋体"
Size = 9
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Style = 0
End
Begin VBCE.CommandButton cmdCancel
Height = 255
Left = 2955
TabIndex = 5
TabStop = 0 'False
Top = 1785
Width = 600
_cx = 1058
_cy = 450
BackColor = 12632256
Caption = "取消"
Enabled = -1 'True
BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "宋体"
Size = 9
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Style = 0
End
End
Attribute VB_Name = "frmReplSynchronizeSub"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Private Sub cmdPrev_Click()
Me.Hide
frmReplSynchronizePub.Show
End Sub
Private Sub Form_Activate()
txtSubscriber.Text = CEMerge.Subscriber
txtSubscriberConnectionString.Text = CEMerge.SubscriberConnectionString
End Sub
Private Sub cmdOK_Click()
Dim Str As String
CEMerge.Subscriber = txtSubscriber.Text
CEMerge.SubscriberConnectionString = txtSubscriberConnectionString.Text
Me.Hide
End Sub
Private Sub cmdCancel_Click()
Me.Hide
frmMain.Show
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -