首页 /编程语言和算法/VB6/ASP
 VB6 设置计算机名称
2023年4月20日 14:23

新建From1(窗体),新建Command1(按钮CommandButton),代码:

Declare Function SetComputerName Lib "kernel32" Alias "SetComputerNameA" (ByVal lpComputerName As String) As Long

Private Sub Command1_Click()
    NewName = "Hello World"
    SetComputerName NewName
End Sub


 
全部回复(0)
首页 | 电脑版 |