这个现象只会在某些版本较旧的 Windows 95 上发生,在
Windows 98 以后的版本就不会发生了!
317、钢琴弹奏程序(如何控制 MIDI 装置)
很多人写信来问我如何在 VB 中控制声音的大小,除了难听的 Beep Beep 声之外,如何像以前的 Basic 一样弹奏出 Do Re Mi
之音乐,您们想知道吗?
以下所附之钢琴弹奏程序,程序相当小巧,功能却相当完整!大家可以练习练习!
318、如何保证连网计算机时间同步?
执行命令: net time "\\OhterComputerName" /set /yes
可以保证名称为OhterComputerName 的计算机与本机时间同步。 Public Sub SyncTime() Dim
thecomp As String Dim theshell As String thecomp =
"\\computername" theshell = "net time " & Chr(34) & thecomp
& Chr(34) & " /set /yes" x = Shell(theshell) End
Sub
定义: Public Declare Function GetSystemMetrics Lib "user32" (ByVal
nIndex As Long) As Long Public Const SM_CLEANBOOT =
67 使用: Select Case GetSystemMetrics(SM_CLEANBOOT) Case 1:
MsgBox "Windows运行在安全模式。" Case 2: MsgBox
"Windows运行在带网络环境的安全模式。" Case Else: MsgBox "Windows运行正常模式。" End
Select