Martin,
I just saw your example. Why are you making that DO/LOOP like:
[code=thinbasic]
do
hInternet = INET_Internet_Open("test", %INTERNET_OPEN_TYPE_DIRECT)
IF hInternet <> %NULL THEN EXIT DO
loop
[/code]
Problem is that if function fails and hInternet will be zero, ode will enter into an infinite loop.
Bookmarks