Quote:
Id just like to point out that i was having the zoneid=0 problem, and was getting frustrated, Until i noticed that:
}while ((zoneID == 0) && (LOCounter > 10000));
should be
}while ((zoneID == 0) && (LOCounter < 10000));
|
Hehe, I pointed this out about 10 messages ago - although to be fair my message wasn't very clear. Also LOCounter is uninitialised too in the version of code printed. Best add an "=0" to it's declaration.