Jump to content

Lars Fosdal

Administrators
  • Content Count

    3319
  • Joined

  • Last visited

  • Days Won

    110

Everything posted by Lars Fosdal

  1. I prefer NOT to raise exceptions in constructors - class nor otherwise. It makes securing the build up of the instance hierarchy too complicated. A lack of connectivity or functionality should only be addressed at the time of use, not at the time of instancing, considering their absence may be temporary. There is one case though - during testing, assertions may be used to check for stuff that SHOULD be in place.
  2. Lars Fosdal

    Which version BDE

    That worked better.
  3. Lars Fosdal

    Which version BDE

    Hmm... Wordpress is acting up and sending me to my own site when I try to follow the link.
  4. Lars Fosdal

    Which version BDE

    Just my two cents: The migration to FireDAC is very much worth it, just to avoid all the BDE pitfalls. Not to forget that it also gave us a massive performance boost for our MS SQL Server use.
  5. Lars Fosdal

    AdMob in Delphi11

    Dave, you are a goldmine 🙂 There appears to be several must do, should do, could do (or do not's) that would help the fledgling developer to get started in a good way, and I bet those were hard earned learning points? I would love to see you author an article (or a book) on the ins and outs of doing an Android app with Delphi! Thank you for all your contributions, and a Happy New Year to you!
  6. Lars Fosdal

    Activity View - condensed/expanded not working lately

    Daniel is on it.
  7. Lars Fosdal

    Code feedback

    For algorithms to be maintainable and testable, they need to be separated from the UI. The UI can deliver inputs, but the math/logic needs to be black boxed seen from a UI perspective.
  8. Lars Fosdal

    List of most popular UI components for VCL

    I use only TMS VCL UI Pack and FastReports for VCL. The more third-party libs you use, the more dependencies you have on the next major upgrade, and the more testing you must do on the arrival of new versions of the libs. Less is more.
  9. Lars Fosdal

    3rd party Android app or Apple app stores

    I disagree. Security is a major factor. Ref. Apple app store for macOS is not limited like iOS. You can distribute stand-alone installation packages for macOS, but not for iOS.
  10. For actual images, I usually try a google search that starts with "image creative commons" then a description of what I am looking for.
  11. Lars Fosdal

    What is RAD Server?

    Currently in quarantine myself. Got a message on the anonymous tracking app that I had been near someone that had Corona. Getting tested today. Hoping that it was a red herring, since I've already had Covid in March and have gotten two shots since then.
  12. https://www.flaticon.com/ has an insane number of SVG icons, many of which are free. Using SVG plugins for Delphi, or Inkscape (free image editor) to convert to any format you need,
  13. Lars Fosdal

    3rd party Android app or Apple app stores

    I am an Android user, and I never use anything except the Google Play appstore. I have done a few sideloads, but that has been from sources that I trust fully. Apple doesn't allow other app stores nor does it allow/enable sideloading - unless you void any remaining warranty and jailbreak your iOS device. My personal advice would be to stay away from unofficial "stores" as they are likely to be ripe with exploits and will drag you down into the mud.
  14. Lars Fosdal

    Problem accessing shared folder

    Is the second computer logged in with a different user? Does that user have access to the share? How are the files opened? Make sure you open them read only, deny none. If the files are opened in a third party tool, you might not have control over that. Using the SysInternals Process Monitor may offer insights to what it is that goes wrong.
  15. Lars Fosdal

    Bookmarks dead?

    Timely info from EMBT: <crickets>
  16. Lars Fosdal

    Move current entity to another unit?

    To reap the benefits.
  17. Lars Fosdal

    Move current entity to another unit?

    Uwe is the maintainer of the tool. His decision has been made clear. Ref. code visibility challenges: Dependency Injection (DI) can solve the challenge of doing form specific actions from a unit that ideally should not know anything about the form instance. unit uTransparencyManager; ... type TProcHandler = reference to procedure; THanderList<T> = class(TList<T>) procedure Execute; // loop through handlers and call each of them end; TProcHandlerList = class(THandlerList<TProcHandler>); var ResetHoverColor: TProcHandler; implementation { THanderList<T> } procedure THanderList<T>.Execute; begin for var Handler in Self do try Handler(); except // log end; end; initalization ResetHoverColor := TProcHandler.Create; Here, TForm1 could register their method with the ResetHoverColor.Add(Self.ResetHoverColor) during FormShow and unregister with ResetHoverColor.Remove(Self.ResetHoverColor) during FormClose (or wherevere appropriate). Drawbacks - DI requires a little scaffolding code. Benefits - uTransparencyManager does not need to know each form - TForm1 does not need to expose internal properties - Only the forms that actually are in use will be added to the handler list. - The ResetHoverColor.Execute loop can have a common exception handling wrapper to deal with misbehaving proc handler code (form = nil, errata in the injected code, etc)
  18. Lars Fosdal

    What is RAD Server?

    @mvanrijnen - I wish you a speedy recovery!
  19. Lars Fosdal

    Developing under Windows 11 in a VM not feasible ?

    Hyper-V VMs are portable, and generation 2 supports a virtual TPM. https://docs.microsoft.com/en-us/windows-server/virtualization/hyper-v/learn-more/generation-2-virtual-machine-security-settings-for-hyper-v Encryption of the image seems to be optional.
  20. There is no official support for personal MacOS VMs from Apple, and the use of unsupported VMs is a breach of Apple's IP. The discussion of illegal use of software is not allowed on DP, so please refrain from discussing such issues here and delete your related commentary.
  21. Lars Fosdal

    FMX cross platform approach?

    Generallly speaking - do you start with the generic (read Win32) application and develop that until it is feature complete before you start on the adaptations for Android/iOS/MacOS - or do you work on all platforms at the same time?
  22. Lars Fosdal

    IOS KeyDown fails

    There are conditions discussed here https://docwiki.embarcadero.com/Libraries/Sydney/en/FMX.Forms.TCommonCustomForm.KeyDown for how that "keystroke" is propagated. Can it be that a control eats the event?
  23. Lars Fosdal

    View most recent postings.

    Me too, and I use the Expanded view mode.
  24. Lars Fosdal

    FMX cross platform approach?

    I am doing primarily FMX, and it is a simple app, visually. Currently, I am just doing the "plumbing" - i.e. make all the non-UI stuff solid so that integration with the UI will be as thin as possible - and in the process - building up a cross platform toolbox. The solution needs to collect data over time to build a historical database, and I am thinking about how I should best do this. Ideally, I would do it centrally - so that the data only needs to be collected once for multiple concurrent viewers, but where to host it so the collection can happen 24/7 and I don't have to pay an arm and a leg? If I can't do it centrally, the app would need to both be UI and a background task so that data collection continues also when the app is not in use. This is a hobbyist project that I do as an exercise for learning FMX and cross platform, and if I decide to share it with everybody, I will prefer not to be responsible for a "backbone". I also want it to be as low cost and reliable as possible (there you have an oxymoron 😛) and simple to set up.
  25. Lars Fosdal

    Long term availability of Community Edition

    The generics in Lazarus is even more gimped than Delphi's generics. Not a viable alternative, IMO.
×