设为首页收藏本站Access中国

Office中国论坛/Access中国论坛

 找回密码
 注册

QQ登录

只需一步,快速开始

返回列表 发新帖
查看: 612|回复: 2
打印 上一主题 下一主题

[其它] 怎样获得本机的主机名?

[复制链接]
跳转到指定楼层
1#
发表于 2004-9-6 22:47:00 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
在vba中,怎样获得本机的主机名阿,请教高手们。谢谢
分享到:  QQ好友和群QQ好友和群 QQ空间QQ空间 腾讯微博腾讯微博 腾讯朋友腾讯朋友
收藏收藏 分享分享 分享淘帖 订阅订阅
2#
发表于 2004-9-6 23:02:00 | 只看该作者
'******************** Code Start **************************

'This code was originally written by Dev Ashish.

'It is not to be altered or distributed,

'except as part of an application.

'You are free to use it in any application,  

'provided the copyright notice is left unchanged.

'

'Code courtesy of

'Dev Ashish

Private Declare Function apiGetComputerName Lib "kernel32" Alias _

    "GetComputerNameA" (ByVal lpBuffer As String, nSize As Long) As Long

Function fOSMachineName() As String

'Returns the computername

Dim lngLen As Long, lngX As Long

Dim strCompName As String

    lngLen = 16

    strCompName = String$(lngLen, 0)

    lngX = apiGetComputerName(strCompName, lngLen)

    If lngX <> 0 Then

        fOSMachineName = Left$(strCompName, lngLen)

    Else

        fOSMachineName = ""

    End If

End Function'******************** Code End **************************然后用fOSMachineName() 取得
3#
发表于 2004-9-6 23:09:00 | 只看该作者
Environ("COMPUTERNAME")
4#
 楼主| 发表于 2004-9-6 23:18:00 | 只看该作者
非常感谢!
您需要登录后才可以回帖 登录 | 注册

本版积分规则

QQ|站长邮箱|小黑屋|手机版|Office中国/Access中国 ( 粤ICP备10043721号-1 )  

GMT+8, 2024-11-13 02:15 , Processed in 0.078016 second(s), 28 queries .

Powered by Discuz! X3.3

© 2001-2017 Comsenz Inc.

快速回复 返回顶部 返回列表