2个回答
展开全部
要用sysinfo控件,必需在部件引用中选择Microsoft Sysinfo Control复选框。程序
代码如下:
Private Sub Command1_ Click()
Dim MsgEnd As String
Select Case SysInfo1.OSPlatform
Case 0
MsgEnd="Unidentified"
Case 1
MsgEnd="Windows 95, ver."&CStr(SysInfo1.OSVersion)
Case 2
MsgEnd="Windows NT, ver."&CStr(SysInfo1.OSVersion)
End Select
MsgBox "System:" & MsgEnd
End Select
MsgBox "System: "& MsgEnd
End Sub
二、用Windows的Getsysteminfo函数获得CPU型号
窗体的声明代码:
Private Type system-info
dwoemid As Long
dwpagesize As Long
ipminimumapplicationaddress As Long
lpmaximumapplicationaddress As Long
dwactiveprocessormask As Long
dwnumberofprocessors As Long
dwallocationgranularity As Long
dwreserved As Long
End Type
Private Declare Sub GetSystemInfo Lib "kernel32"
(IpSystemInfo As system-info)
程序代码:
Private Sub Command2_ Click()
Dim sys As system-info
GetSystemInfo sys
Pring "CPU类型:";sys.dwprocessortype
Pring "no.processors:";sys.dwnumberofprocessors
End Sub
三、用Windows的Getdrivetype函数获得驱动器类型
窗体的声明代码:
Option Explicit
Const drive removable=2
Const drive fixed=3
Const drive remote = 4
Const drive cdrom=5
Const drive ramdisk=6
Private Declare Function GetDriveType Lib "kernel32"
Alias "GetDriveTypeA" (ByVal nDrive As String) As Long
程序代码:
Private Sub Command3_ Click()
Dim i, drv, d$
For i=0 to 25
d$=Chr$(i+65)& ":"
drv=GetDriveType(d$)
Select Case drv
Case drive removable
Print "drive" & d$ & "is removable."
Case drive fixed
Print "drive" & d$ & "is fixed."
Case drive remote
Print "drive" & d$ & "is remote."
Case drivt cdrom
Print "drive" & d$ & "is cd-rome."
Case drive ramdisk
Print "drive" & d$ & "is ramdisk."
Case Else
End Select
Next i
End Sub
若创建一个标准工程,在窗体放置三个命令按纽:commandl, command2, command3.用鼠标点击按纽,即可实现上述功能。
代码如下:
Private Sub Command1_ Click()
Dim MsgEnd As String
Select Case SysInfo1.OSPlatform
Case 0
MsgEnd="Unidentified"
Case 1
MsgEnd="Windows 95, ver."&CStr(SysInfo1.OSVersion)
Case 2
MsgEnd="Windows NT, ver."&CStr(SysInfo1.OSVersion)
End Select
MsgBox "System:" & MsgEnd
End Select
MsgBox "System: "& MsgEnd
End Sub
二、用Windows的Getsysteminfo函数获得CPU型号
窗体的声明代码:
Private Type system-info
dwoemid As Long
dwpagesize As Long
ipminimumapplicationaddress As Long
lpmaximumapplicationaddress As Long
dwactiveprocessormask As Long
dwnumberofprocessors As Long
dwallocationgranularity As Long
dwreserved As Long
End Type
Private Declare Sub GetSystemInfo Lib "kernel32"
(IpSystemInfo As system-info)
程序代码:
Private Sub Command2_ Click()
Dim sys As system-info
GetSystemInfo sys
Pring "CPU类型:";sys.dwprocessortype
Pring "no.processors:";sys.dwnumberofprocessors
End Sub
三、用Windows的Getdrivetype函数获得驱动器类型
窗体的声明代码:
Option Explicit
Const drive removable=2
Const drive fixed=3
Const drive remote = 4
Const drive cdrom=5
Const drive ramdisk=6
Private Declare Function GetDriveType Lib "kernel32"
Alias "GetDriveTypeA" (ByVal nDrive As String) As Long
程序代码:
Private Sub Command3_ Click()
Dim i, drv, d$
For i=0 to 25
d$=Chr$(i+65)& ":"
drv=GetDriveType(d$)
Select Case drv
Case drive removable
Print "drive" & d$ & "is removable."
Case drive fixed
Print "drive" & d$ & "is fixed."
Case drive remote
Print "drive" & d$ & "is remote."
Case drivt cdrom
Print "drive" & d$ & "is cd-rome."
Case drive ramdisk
Print "drive" & d$ & "is ramdisk."
Case Else
End Select
Next i
End Sub
若创建一个标准工程,在窗体放置三个命令按纽:commandl, command2, command3.用鼠标点击按纽,即可实现上述功能。
AiPPT
2024-09-19 广告
2024-09-19 广告
随着AI技术的飞速发展,如今市面上涌现了许多实用易操作的AI生成工具1、简介:AiPPT: 这款AI工具智能理解用户输入的主题,提供“AI智能生成”和“导入本地大纲”的选项,生成的PPT内容丰富多样,可自由编辑和添加元素,图表类型包括柱状图...
点击进入详情页
本回答由AiPPT提供
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询