退出登录.frm
来自「一个网带烧结炉的程序,串口通讯,做工业自动化的可以参考」· FRM 代码 · 共 90 行
FRM
90 行
VERSION 5.00
Begin VB.Form Dialog
BorderStyle = 3 'Fixed Dialog
Caption = "提示"
ClientHeight = 2610
ClientLeft = 3915
ClientTop = 3885
ClientWidth = 5565
Icon = "退出登录.frx":0000
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
Moveable = 0 'False
ScaleHeight = 2610
ScaleWidth = 5565
ShowInTaskbar = 0 'False
Begin VB.CommandButton Command2
Caption = "否"
BeginProperty Font
Name = "宋体"
Size = 14.25
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 495
Left = 3360
TabIndex = 2
Top = 1440
Width = 975
End
Begin VB.CommandButton Command1
Caption = "是"
BeginProperty Font
Name = "宋体"
Size = 14.25
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 495
Left = 1320
TabIndex = 1
Top = 1440
Width = 975
End
Begin VB.Label Label1
Alignment = 2 'Center
Caption = "真的要退出登录吗?"
BeginProperty Font
Name = "宋体"
Size = 15.75
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 495
Left = 1320
TabIndex = 0
Top = 600
Width = 3375
End
End
Attribute VB_Name = "Dialog"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Private Sub Command1_Click()
LoginSucceeded = False
Unload Me
End Sub
Private Sub Command2_Click()
Unload Me
End Sub
Private Sub Form_Load()
SetTopMostWindow hwnd, True
End Sub
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?