05-30-2025, 04:56 PM
(05-30-2025, 08:12 AM)JuergenS Wrote: TIWIPGeolocationClient::MaxErrorCount = 15;
ShowMessage(pCurClient->MaxErrorCount); // should be 15
-> result is 15
pCurClient->MaxErrorCount = 5;
ShowMessage(TIWIPGeolocationClient::MaxErrorCount); // should be 5
-> result is 5
That's good, that proves that is only 1 property being accessed 2 different ways.
(05-30-2025, 08:12 AM)JuergenS Wrote: TIWIPGeolocationClient::Enabled = false;
ShowMessage(pCurClient->Enabled); // should be false
-> result is true
pCurClient->Enabled = true;
ShowMessage(TIWIPGeolocationClient::Enabled); // should be true
-> result is false
That would imply that either there are 2 separate properties being accessed, or that there is one property with getter/setter methods that are flipping the value, for whatever reason. I don't have or use IntraWeb, let alone its source code, so I couldn't tell you what is happening.
(05-30-2025, 08:12 AM)JuergenS Wrote: Are there any examples on how to use TIWIPGeolocationHelper to simply the use of TIWIPGeolocationClient ?
I don't know. I just know that TIWIPGeolocationHelper was mentioned in the release notes.

