Jump to content

Olli73

Members
  • Content Count

    41
  • Joined

  • Last visited

Community Reputation

6 Neutral

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

  1. Olli73

    Multithreading

    At least createCompomponents should not be synchronized so that components gets created in thread context.
  2. Olli73

    Printing Bitmap in FMX with a Thermal Printer

    Do you want to print under Windows or mobile phone? Under Windows you can follow the approach from Vincent. A printer driver must be installed under windows for that. Under mobile phone you should connect via bluetooth to the printer, establish a communication channel and send data in the "printer language" to the printer.
  3. ConvertThreadToFiberEx is a WinAPI function which exists since Windows Vista, so it cannot work under XP.
  4. Olli73

    Creating a Server Application using tidtcpserver

    Isn't it so that the IdContext is freed on connection loss and so I have no reference anymore to my data on reconnect? Then he could save the data reference in a dictionary (do not forget to use a locking mechanism) with IP address or any Unique Client ID as key and restore the data reference on reconnect.
  5. Olli73

    TEdit problem capital letters (Delphi 12, Android)

    Therefore I asked if it is Samsung! Samsung can everything except software! 😚
  6. Olli73

    TEdit problem capital letters (Delphi 12, Android)

    Then setting the control type to platform should work, as I have mentioned.
  7. Olli73

    TEdit problem capital letters (Delphi 12, Android)

    Happens that only in Delphi Apps? Then try to set the control type to platform for the edit. When it happens in all apps, which smartphone do you use? Samsung?
  8. Olli73

    Edge Webview2 Environment

    Is 32 / 64 bit matching between your app and webview?
  9. Olli73

    ClientDataSet Wrong Aggregate

    Try a Select Sum(Round(Price * Qty, 2)) as Total or Select Round(Sum(Price * Qty), 2) as Total And what is the FieldType in ClientdataSet?
  10. Try Bitmap32 from https://github.com/graphics32 TBitmap is not Threadsafe in most cases.
  11. Olli73

    TRestRequest and IOS...

    Is at this place something filled in "restResponse1.Content"? Is the value later (after the Handler) filled? And what is the StatusCode of the response?
  12. Olli73

    TRestRequest and IOS...

    In case of ExecuteAsync, have you used the ACompletionHandler Parameter instead of the Afterexecute event and also set the ASynchronized Parameter to true?
  13. Olli73

    TRestRequest and IOS...

    Instead of creating your own thread/task, you could/should use "RestRequest1.ExecuteAsync(...)".
  14. Olli73

    My app dies in Server 2019

    Do you use a DLL and have also in Windows event log something with "KERNELBASE.dll"? I could only solve such an issue by including the DLL code into program.
  15. Download works out of the box, upload not. You must have a PHP Script, a CGI, a ISAPI dll or an own server to be able to upload files.
×