Question : extending HDMI over Cat5e

Any recommendations for extending HDMI using Cat5e, distance of 50ft?

http://www.rackmount-devices.com/019-4065.html
I'm not sure why the two RJ45 inputs.

I was told to use shielded UTP cable.

Answer : extending HDMI over Cat5e

Try this.

~bp
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
Sub MethExecute()
 
   Dim objRegEx, objMatch, strString, strDisplayMsg
 
   Set objRegEx = CreateObject("VBScript.RegExp")
   objRegEx.Pattern = "bear"
   objRegEx.Global = True
   objRegEx.IgnoreCase = True            
 
   strString = "Once upon a time there were three little Bears. There was mama Bear, papa Bear and baby bear"
 
   strDisplayMsg = ""
 
   For Each objMatch in objRegEx.Execute(strString)
      strDisplayMsg = strDisplayMsg & " An instance of " + objMatch.Value & " found at position " & CStr(CInt(objMatch.FirstIndex) + 1) & VbCrlf
   Next
 
   MsgBox(strDisplayMsg)      
   
End Sub
Random Solutions  
 
programming4us programming4us