help.bas
来自「山西旅游酒店预定商务软件」· BAS 代码 · 共 27 行
BAS
27 行
Attribute VB_Name = "Module1"
Public rusult As String
Public Declare Function ShellExecute Lib "shell32.dll" Alias "ShellExecuteA" (ByVal hwnd As Long, ByVal lpOperation As String, ByVal lpFile As String, ByVal lpParameters As String, ByVal lpDirectory As String, ByVal nShowCmd As Long) As Long
Function showhelp(info As String, ByRef f As Form) '调用帮助参数为信息
Unload MsgForm
If index <> 1 Then Unload frmAssist
With MsgForm
.A_SetBackColor RGB(254, 255, 204)
.msgText.ForeColor = vbBlack
.msgText.FontName = "MS Sans Serif"
.msgText.FontBold = False
.msgText.FontItalic = False
.msgText.FontSize = 10
.A_SystemIcon = IDI_EXCLAMATION
.A_SendResultsTo f
.A_AddButton 0, "确定"
.A_AddButton 1, "取消"
.A_MsgText = info
.A_Initialize
End With
rg.frmZoom frmAssist, 2, ZoomFormOpen
End Function
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?