
假如我们想要用VB6.0 取得系统信息,可以通过VB6.0的sysinfo控件和Windows API函数来实现。
一、用sysinfo控件获得操作系统版本
要用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
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)
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
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
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
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.用鼠标点击按纽,即可实现上述功能。
·本文关键字: VB / 系统信息 / sysinfo控件 / API
推荐阅讯
- VBScript教程 第四课 VBScript变量
- VB中用AresButtonPro控件制作漂亮按钮
- Visual Basic中文本框处理技巧集萃
- Visual Basic6.0事件机制分析
- 探索VB系列中的事件处理的奥秘
- Visaul C++6.0中使用串行通信控件
- 在VB中调用CHM 帮助的几种方法
- 通过实例学VB—创建简单的个人通讯录
- VB.NET中层次数据绑定TreeView的实现
- Visual Basic数据库操作方法小结
阅读排行
- 1.通过实例学VB—创建简单的个人通讯录
- 2.如何编写高质量的VB代码
- 3.在VB的ListView控件中动态加载记录
- 4.用VB备份和恢复SQL Server数据库的方法
- 5.利用VB学做“黑客”程序
- 6.掌握VB中的ADO数据对象编程
- 7.将程序加入启动组
- 8.VB程序中用ADO对象动态创建数据库和表
- 9.VB与Excel2000实现复杂报表打印
- 10.六天学会Visual Basic数据库编程
专题教程
- 大话G游 专题:手机病毒揭密
- ARP攻击防范与解决方案 路由故障处理手册
- Picasa中文版_Picasa教程 专题:清除流氓软件
- Firefox专题 seo搜索引擎优化专区
- 重装Windows必知的事情 装机之必备软件大行动
病毒专杀栏
