本文介绍了使用VBA获取计算机名称的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

是否可以在VBA中获取计算机的名称?

Is there a way to get the name of the computer in VBA?

推荐答案

Dim sHostName As String

' Get Host Name / Get Computer Name

sHostName = Environ$("computername")

这篇关于使用VBA获取计算机名称的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-30 17:38