Jump to content

Fudley

Members
  • Content Count

    69
  • Joined

  • Last visited

Community Reputation

5 Neutral

Technical Information

  • Delphi-Version
    Delphi 11 Alexandria

Recent Profile Visitors

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

  1. Fudley

    TForm to TForm communication

    delphi 12, fmx, android What is a simple technique for sending communications from one TForm to another TForm? (other than filling a hidden label or clicking a hidden button on the target form maybe?)
  2. Fudley

    Any *new* controls added, events do not trigger

    Well FM, it happened again today. Anyone have any clues please? Reinstall Delphi?
  3. Thanks Remy that's a great resource. Link saved for reference.
  4. Fudley

    Any *new* controls added, events do not trigger

    I had to revert back to an earlier version and manually redo the changes one by one since then. I still don't know how or why it happened.
  5. Fudley

    Any *new* controls added, events do not trigger

    Well I tried on Android 12 and 14 - same problem. Scratching head...
  6. Fudley

    Any *new* controls added, events do not trigger

    Sorry - Delphi 12, Windows 11. However my test phone did upgrade to Android 15 today...
  7. This just started happening, and I can't figure out what changed. All existing controls on the form respond to OnTap events as usual. If I add a new control to the form, such as a button or label, its OnTap event does not fire. For instance, if I drop a button (Button9) on the form, and assign its OnTap event as follows, nothing happens when I tap it. procedure TFudleyMain.Button9Tap(Sender: TObject; const Point: TPointF); begin showmessage('HERE'); end; Anyone ever experience this?
  8. What I am doing to load a .style file from disk: if FileExists(SelectedStyleFile) then begin Application.mainform.stylebook.LoadFromFile(SelectedStyleFile) ; end; How do I then apply the style?
  9. Yes! Thank you very much Dave. I am constantly amazed at your knowledge.
  10. D12, Android 14 I have added a file to the deployment tab. Local name is abc.xyz Remote path is set as assets\internal , remote name is abc.xyz How do I load this file at runtime? I can't find it with FileExists function. I've tried variations of the TPath.Get* path functions i.e. FileExists( tpath.combine(TPath.GetAppPath,'abc.xyz) ); Basically , how do I locate the file deployed to assets\internal at runtime
  11. Fudley

    Need a cheap tablet. Recommend?

    To follow up, I was able to get a 7 inch and 10 inch for testing. Glad I did! Have to adjust a few things
  12. Fudley

    Need a cheap tablet. Recommend?

    Hi François , I am so sorry I really messed up that description! - We are developing apps for Android, using Delphi 12, on Windows 11. - We need an Android tablet to be used only for testing the android apps. (and possibly as a Kindle alternative 📓) - We want to spend under $150 if possible (OK if it is used or reconditioned) -I am used to Samsung, so that would be a plus I hope that is more lucid. Thanks!
  13. I need to get a cheap tablet for testing. -Needs to work with Windows 11. and Delphi 12. -Preferably under $150. Any recommendations?
  14. Fudley

    Alignment of group of controls

    Thanks dave
  15. Delphi 12.1 Assigning a TDateEdit.Date causes a calendar to popup on android. For instance simply MyDateEdit.Date := Today; Is this by design, and how do I prevent it?
×