dlucic 1 Posted October 30 I have a problem with my DataSnap client application on Android 11 OS. Not every time but from time to time and on different places in my code. Sometimes I recive this message When i click Break debuger points on this line in code What can be a problem 1 Share this post Link to post
Lars Fosdal 1790 Posted October 31 Does it always fail on the same parameter? I'd probably do it like this, but it depends on the declaration and description of the GetOptParameter method. var FNameOut: AnsiString; begin ... FNameOut := UTF8Encode(ParamName); if FDSBase.GetOptParameter(0, FieldNo, @FNameOut, ParamType, ... Share this post Link to post
TDDung 12 Posted November 2 On 10/30/2024 at 9:12 PM, dlucic said: I have a problem with my DataSnap client application on Android 11 OS. Not every time but from time to time and on different places in my code. Sometimes I recive this message When i click Break debuger points on this line in code What can be a problem Same to me 😞 Share this post Link to post
dlucic 1 Posted November 4 On 10/31/2024 at 4:01 PM, Lars Fosdal said: Does it always fail on the same parameter? I'd probably do it like this, but it depends on the declaration and description of the GetOptParameter method. var FNameOut: AnsiString; begin ... FNameOut := UTF8Encode(ParamName); if FDSBase.GetOptParameter(0, FieldNo, @FNameOut, ParamType, ... I made a simple test application as you tell me but I never get error as one in my application. New app has all the client data sets as my original application When I click on button List param my test app fill Listbox with all params from the CDS selected by Radiobuttons. Then I select one of params and click on the other button Test param. This is onClick method code I never get error as I get in my original application Share this post Link to post
dlucic 1 Posted November 8 On 11/2/2024 at 4:32 PM, TDDung said: Same to me 😞 Any solution? Share this post Link to post