Stream
BlitzMax Forums/BlitzMax Beginners Area/Stream| 
 | ||
| Hi, I'm learning how-to use stream class with bmax. I have executed the following code 
in = ReadStream("http::blitzbasic.com")
If Not in RuntimeError "Failed to open stream"
While Not Eof(in)
	Print ReadLine(in)
Wend
CloseStream in
when i run the code, i receive the following error message Unhandled Exception:Failed to open stream Where i failed ? Can you help me please ? thanks | 
| 
 | ||
| here | 
| 
 | ||
| I'm using a proxy |