hello there, im a fairly good db programmer i might say, but i
ve encountered a problem i dont know whats causing it..
this is the code where i get the problem:
cls
Print "Connecting to: "+IPAdress$ : Print "With "+Connection$
print : Print "Please wait.." : sync
set net connection Selected_Connection, IPAdress$
print "Connection Established!" : print : print "Press Keyboard" : sync
wait key
CLS : Print "Checking For Servers on "+IPAdress$ : Print : Sync
perform checklist for net sessions
if checklist quantity()=0
print "No Servers Found" : sync
wait key
else
do
cls : print "Servers Found:"
for c=1 to checklist quantity()
text 0, 50+c*15, str$(c)+". "+checklist string$(c)
width = text width( str$(c)+". "+checklist string$(c))
if hRef( width+10, 50+c*15, "< Join") > 0
Selected_Server = c
goto gameJoin
endif
next c
print
if hRef(100, 0, " > Create New Server < ") > 0 then exit
sync:loop
endif
..and the problem is right after 'perform checklist for net sessions' the program ends and exit to desktop. does anyone know what i must do??
thanks