📄 msgdis.frm
字号:
VERSION 5.00
Object = "{5D7C1788-CAB7-4A0B-9489-B9AB2E869EB0}#1.0#0"; "BLacKCandy.ocx"
Begin VB.Form msgdis
BorderStyle = 0 'None
Caption = "Form2"
ClientHeight = 2505
ClientLeft = 0
ClientTop = 0
ClientWidth = 4800
LinkTopic = "Form2"
ScaleHeight = 2505
ScaleWidth = 4800
ShowInTaskbar = 0 'False
StartUpPosition = 2 'CenterScreen
Begin VB.Timer Timer1
Enabled = 0 'False
Interval = 2000
Left = 720
Top = 1560
End
Begin BLacKCandy.BLacKCandyButton BLacKCandyButton1
Height = 375
Left = 1320
TabIndex = 2
Top = 1560
Width = 1095
_ExtentX = 1931
_ExtentY = 661
BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "Tahoma"
Size = 9
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Caption = "Ya"
IconHighLiteColor= 0
CaptionHighLiteColor= 0
Checked = 0 'False
ColorButtonHover= 16760976
ColorButtonUp = 15309136
ColorButtonDown = 15309136
BorderBrightness= 0
ColorBright = 16772528
DisplayHand = 0 'False
ColorScheme = 0
End
Begin BLacKCandy.BLacKCandyButton BLacKCandyButton2
Height = 375
Left = 2880
TabIndex = 3
Top = 1560
Width = 1095
_ExtentX = 1931
_ExtentY = 661
BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "Tahoma"
Size = 9
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Caption = "Tidak"
IconHighLiteColor= 0
CaptionHighLiteColor= 0
Checked = 0 'False
ColorButtonHover= 16760976
ColorButtonUp = 15309136
ColorButtonDown = 15309136
BorderBrightness= 0
ColorBright = 16772528
DisplayHand = 0 'False
ColorScheme = 0
End
Begin VB.Label msg
BackStyle = 0 'Transparent
Caption = "Aden Koo"
Height = 615
Left = 1080
TabIndex = 1
Top = 600
Width = 3495
End
Begin VB.Image Image2
Height = 705
Left = 240
Picture = "msgdis.frx":0000
Stretch = -1 'True
Top = 600
Width = 720
End
Begin VB.Label Label1
BackStyle = 0 'Transparent
Caption = "Disconnected"
BeginProperty Font
Name = "MS Sans Serif"
Size = 8.25
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 255
Left = 120
TabIndex = 0
Top = 0
Width = 2175
End
Begin VB.Image Image3
Height = 2505
Left = 0
Picture = "msgdis.frx":08CA
Stretch = -1 'True
Top = 0
Width = 4800
End
End
Attribute VB_Name = "msgdis"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Const HWND_TOPMOST = -1
Const SWP_NOSIZE = &H1
Private Declare Sub SetWindowPos Lib "user32" (ByVal hwnd As Long, ByVal HWNDinsertafter As Long, ByVal x As Long, ByVal y As Long, ByVal cx As Long, ByVal cy As Long, ByVal wFlags As Long)
Private Declare Function BringWindowToTop Lib "user32" (ByVal hwnd As Long) As Long
Private Sub BLacKCandyButton1_Click()
billing.Width = billing.min1.Width
billing.Height = billing.min1.Height
billing.biayar.Visible = False
billing.waktur.Visible = False
billing.Line1.Visible = False
billing.frmmen.Visible = True
Unload Me
End Sub
Private Sub BLacKCandyButton2_Click()
Unload Me
End Sub
Private Sub Form_Load()
Timer1.Enabled = True
End Sub
Private Sub Form_Unload(Cancel As Integer)
billing.killtask.Enabled = False
End Sub
Private Sub Timer1_Timer()
BringWindowToTop Me.hwnd
SetWindowPos Me.hwnd, HWND_TOPMOST, 0, 0, 0, 0, SWP_NOSIZE
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -