ok for those interested here's how to make python work with Global Cache (iTach) Ir Codes.
Python Script:
import socket
TvPowerOn = "sendir,1:1,1,38000,1,1,341,170,21,21,21,64,21,21,21,64,21,64,21,64,21,64,21,21,21,64,21,21,21,64,21,21,21,21,21,21,21,21,21,64,21,64,21,21,21,64,21,64,21,64,21,21,21,21,21,21,21,21,21,64,21,21,21,21,21,21,21,64,21,64,21,64,21,1517,341,85,21,3655"+"\r\n"
TvPowerOff "sendir,1:1,1,38000,1,1,341,170,21,21,21,64,21,21,21,64,21,64,21,64,21,64,21,21,21,64,21,21,21,64,21,21,21,21,21,21,21,21,21,64,21,21,21,64,21,64,21,64,21,64,21,21,21,21,21,21,21,64,21,21,21,21,21,21,21,21,21,64,21,64,21,64,21,1517,341,85,21,3655"+"\r\n"
s = socket.socket()
HOST = "Enter Ip of iTach"
PORT = 4998
s.connect((HOST,PORT))
data=input()
s.send(data)
print s.recv(1124)
s.close()
That's about it, run that script and when presented with command prompt type in 'TvPowerOn' and code gets sent.
but i have no idea yet how to make that work in VC.
p.s TCPip Plugin does exactly this and works like a charm.