Yuo can get the computername with:
**Declarations
Private Declare Function apiGetComputerName Lib "kernel32" Alias _
"GetComputerNameA" (ByVal lpBuffer As String, nSize As Long) As Long
**function
Function txtMachineName() 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
txtMachineName = Left$(strCompName, lngLen)
Else
txtMachineName = vbNullString
End If
End Function
Then use a simple if in the OnLoad to hide the control:
if txtMachineName="MyMachine" then
mycontrol.visible=false
else
mycontrol.visible=true
end if