05-30-2025, 08:12 AM
Hi, this are the results of the test you wanted me to do:
TIWIPGeolocationClient::MaxErrorCount = 15;
ShowMessage(pCurClient->MaxErrorCount); // should be 15
-> result is 15
pCurClient->MaxErrorCount = 5;
ShowMessage(TIWIPGeolocationClient::MaxErrorCount); // should be 5
-> result is 5
TIWIPGeolocationClient::Enabled = false;
ShowMessage(pCurClient->Enabled); // should be false
-> result is true
pCurClient->Enabled = true;
ShowMessage(TIWIPGeolocationClient::Enabled); // should be true
-> result is false
Are there any examples on how to use TIWIPGeolocationHelper to simply the use of TIWIPGeolocationClient ?
TIWIPGeolocationClient::MaxErrorCount = 15;
ShowMessage(pCurClient->MaxErrorCount); // should be 15
-> result is 15
pCurClient->MaxErrorCount = 5;
ShowMessage(TIWIPGeolocationClient::MaxErrorCount); // should be 5
-> result is 5
TIWIPGeolocationClient::Enabled = false;
ShowMessage(pCurClient->Enabled); // should be false
-> result is true
pCurClient->Enabled = true;
ShowMessage(TIWIPGeolocationClient::Enabled); // should be true
-> result is false
Are there any examples on how to use TIWIPGeolocationHelper to simply the use of TIWIPGeolocationClient ?

