Jump to content

weabow

Members
  • Content Count

    83
  • Joined

  • Last visited

Community Reputation

6 Neutral

About weabow

  • Birthday 01/03/1960

Technical Information

  • Delphi-Version
    Delphi 12 Athens

Recent Profile Visitors

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

  1. I have a TImage in which I use the KeyDown event. But if I set the DragMode in Automatic, Keydonw is no longer fired. An idea ?
  2. weabow

    TButton : change backgroundcolor

    I've found it : thanks a lot
  3. weabow

    TButton : change backgroundcolor

    Thanks a lot. I'de like to have a class inheriting from TButton, under FMX Crossplatform. How may I set the controltype in this case ?
  4. weabow

    TButton : change backgroundcolor

    Hi there, I've now spend somme hours to try to change the Background Color of a TButton, or TSpeedButton, at run time. But no way ! An idea ?
  5. weabow

    Help with Thread on FMX

    Very technical answer : it helps a lot. Thanks
  6. weabow

    Help with Thread on FMX

    I'm not strong at threads, but have to use them due to crossplatform app. So : TThread.Synchronize is made to display something in the gui, surely. But I often prefer TThread.ForceQueue. After you have a lot of timers. In the past on Windows, that wasn't a good strategy. I'd prefer one timer with a switch. After you can use, I think, tthread.CreateAnonymousThread, but when you want it to do something to be displayed, you have to Synchronise, or ForceQueue, from this Anonymous thread. Also, if you have a variable in the main thread, and you want to change its value from Anonymous, you have to do it in a Synchronyse, from th Anonymous. And to finish, be careful of Android, which threads are a little bit differnet from the other plateforms. Hope this helps.
  7. No way for me to have the TFDPhysSQLiteDriverLink with those uses... Can't find library
  8. weabow

    Debug output

    Of course ! Thanks a lot
  9. weabow

    Debug output

    Hi there, I've installed Athens, so of course I lost all my configuration, and above all, the types of messages printed in the output frame. I do not need all these informations, that "mask" my own informations. So in previous version I've arrived to control the output, but I can't arrive to do it on Athen. Where do I decide what appears in the output frame ? Typically, all the std messages during the use of the software are too mutch to me. I'd like to output only the messages I decide to output.
  10. My app runs with sqlite and uses 2 files, stored in deployment page for MacOs like that : libcgsqlite3.dylib in Contents\MacOs libcgsqlite3_fde.dylib in Contents\MacOs I have a Notarization error : { "severity": "error", "code": null, "path": "intelli7.app.zip/intelli7.app/Contents/MacOs/libcgsqlite3.dylib", "message": "The signature does not include a secure timestamp.", "docUrl": "https://developer.apple.com/documentation/security/notarizing_macos_software_before_distribution/resolving_common_notarization_issues#3087733", "architecture": "x86_64" }, Any idea will be very appreciated... Solution The pb was that one of the libs had a path like that : c:\...\; It needs a path like : $(BDS)\Redist\osx64\ So need to edit myapp.deployproj to change the path.
  11. I think it depends on the OS target. On Windows, I do not add any file On Android, I add lib-native-activity.so On MacOs I add libcdsqlite.dylib and libcrypto.dylib On IOS I add ... nothing On Linux I add ... nothing But I'm not sure all these libraries concern SQLite
×