smartphonehelp.vb
来自「清华大学出版社出版的 移动应用开发宝典 张大威(2008)的附书源代码」· VB 代码 · 共 11 行
VB
11 行
Module SmartphoneHelp
''' <summary>
''' Displays the contents of the Help file at the specified URL using Internet Explorer
''' </summary>
''' <param name="url">The path and name of the Help file.</param>
Public Sub ShowTopic(ByVal url As String)
System.Diagnostics.Process.Start(url, "")
End Sub
End Module
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?