...okay, apparently I'm having some issues here. This query gives me a funny error: [code] SeedRnd MilliSecs() Graphics 640,480,0,2 SetBuffer BackBuffer() stream = OpenTCPStream("http://www.travian.com", 80) WriteLine stream, "GET index.php HTTP/1.0"+Chr$(10) WriteLine stream, Chr$(10) While Not(Eof(stream)) Print ReadLine$(stream) Wend CloseTCPStream stream WaitKey:End [/code] I get results when connecting to Travian.com, but it only says Bad Request. If I connect to Google.com though, the stream doesn't get opened. This is essentially following the example provided in the Blitz help files. Does anyone know what I'm doing wrong here? This post is from -- http://socoder.net/index.php?topic=1856