Jump to content

Zoran Bonuš

Members
  • Content Count

    34
  • Joined

  • Last visited

  • Days Won

    1

Zoran Bonuš last won the day on July 28 2021

Zoran Bonuš had the most liked content!

Community Reputation

15 Good

Recent Profile Visitors

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

  1. Zoran Bonuš

    FireDAC connection lost on setting TFDQuery's SQL.Text

    Setting SQL forces the FDQuery to close. My guess is that in combination with pooled connection, it might release the connection too. Have you tried setting the SQL before starting the transaction or even setting the FDQuery.Connection ? You might try to debug and trace into the line where you set the SQL to see what after-effects it has in your context.
  2. Zoran Bonuš

    KSVC 8.0

    Blogpost about the update: https://blogs.embarcadero.com/introducing-the-brand-new-konopka-signature-vcl-controls-8/#What_is_new_in_Konopka_Signature_Controls_8
  3. Zoran Bonuš

    Konopka raize components

    And KSVC 8.0 has just been released https://blogs.embarcadero.com/introducing-the-brand-new-konopka-signature-vcl-controls-8/#What_is_new_in_Konopka_Signature_Controls_8
  4. Zoran Bonuš

    Delphi 12.3 is available

    KSVC 8.0 released https://blogs.embarcadero.com/introducing-the-brand-new-konopka-signature-vcl-controls-8/#What_is_new_in_Konopka_Signature_Controls_8
  5. Zoran Bonuš

    VCL Skia *.svg display dependencies ?

    The latest skia4delphi (beta) removes the need to deploy the .dll, as far as I inderstand it:
  6. Zoran Bonuš

    Namespaces in Spring4d code

    I guess to help the compiler a liittle bit, as explained here: https://blog.marcocantu.com/blog/2022-december-suggestions-help-delphi-compiler.html
  7. In such situations I use JSONReader instead: https://docwiki.embarcadero.com/CodeExamples/Sydney/en/RTL.JSONReader It's less convenient, but much more efficient when "sequential" processing of the json is possible.
  8. Zoran Bonuš

    How do I set debugging ranges with-in lines?

    I use F4 (Run to cursor) in situations like this ...to skip debugging parts i don't need to debug, but still stops when the program reaches the selected line.
  9. Zoran Bonuš

    Use java code in Delphi

    Have you considered https://winsoft.sk/acpusb.htm (commercial)?
  10. Zoran Bonuš

    Format text in TSpinBox

    You may try the TNumberBox, available in the newer versions of Delphi. https://docwiki.embarcadero.com/RADStudio/Sydney/en/Using_VCL_TNumberBox_Control
  11. Zoran Bonuš

    FirebirdSQL 4 (64bit) Performance

    Have you considered creating LXC containers, instead of VMs? Should be less resource-hungry, easier to setup...and only slightly less secure (if set as not priviliged, which is the default).
  12. Zoran Bonuš

    How do I execute code after FormShow ?

    How about testing .Visible in OnActivate? Or starting a timer in OnShow and execute your code few ms later, when the form is already visible.
  13. How about app tehtering? Ready to use components, multi-platform, ip/bluetooth app to app communication https://docwiki.embarcadero.com/RADStudio/Alexandria/en/Using_App_Tethering
  14. If you already use database of other data, I would go with the images in DB. Another form.of storage means also another thing to take care of backups, accessibility, security, etc.
  15. Zoran Bonuš

    Delphi Professional Database Connectivity

    Or you can use other 3rd party db components (commercial like unidac) with Delphi Pro.
×