กระทู้เก่าบอร์ด อ.สุภาพ ไชยา
369 1
URL.หัวข้อ /
URL
ทำไง จึงดึงชื่อเครื่อง ออกมาได้
ผมเคยเห็นใน Pantip เขาใช้ VB เขียน Code
ดึงชื่อเครื่อง ไม่ทราบอาจารย์พอมีวิธหรือปล่าวครับ
ดึงชื่อเครื่อง ไม่ทราบอาจารย์พอมีวิธหรือปล่าวครับ
1 Reply in this Topic. Dispaly 1 pages and you are on page number 1
1 @R02005
Declare Function GetComputerName Lib "kernel32" Alias "GetComputerNameA" (ByVal lpBuffer$, nSize As Long) As Long
Function CurComputerName()
Dim sTmp1$
sTmp1 = Space$(512)
GetComputerName sTmp1, Len(sTmp1)
CurComputerName = Trim$(sTmp1)
End Function
ผมไปหามาเจอแล้วครับ
http://www.planet-source-code.com/vb/scripts/ShowCode.asp?txtCodeId=2338&lngWId=1
Pok
Time: 0.9699s