码迷,mamicode.com
首页 > 其他好文 > 详细

vb6 判断64位操作系统

时间:2014-08-24 12:48:52      阅读:188      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   os   io   ar   div   cti   log   

Option Explicit
 Private Declare Function GetCurrentProcess Lib "kernel32" () As Long
 Private Declare Function IsWow64Process Lib "kernel32" (ByVal hProcess As Long, ByRef Wow64Process As Long) As Long
  
 Private Sub Command1_Click()
     Dim lngReturn As Long
     Call IsWow64Process(GetCurrentProcess, lngReturn)
     If lngReturn = 0 Then
         MsgBox "非64位OS"
     Else
         MsgBox "64位OS"
     End If
 End Sub 

 

vb6 判断64位操作系统

标签:style   blog   color   os   io   ar   div   cti   log   

原文地址:http://www.cnblogs.com/nanfei/p/3932653.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!