Jump to content

Fudley

Members
  • Content Count

    44
  • Joined

  • Last visited

Community Reputation

2 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

    Any reason not to upgrade to 12.2 ?

    Oh I like that dockable AI Chat Panel
  2. Fudley

    Any reason not to upgrade to 12.2 ?

    That Smart Codeinsight sounds great! Thanks for the link.
  3. Fudley

    Delphi 12.2 Toolbars strange behavior

    Oh well, provides a nice warm up phase before coding 🌞
  4. Fudley

    XML library for Delphi on Android

    Just to confirm - VerySimpleXML is great. Took about 30 seconds to understand and implement Loadfrom/Saveto streams. Wow. Great job Dennis D. Spreen!
  5. I'm at 12.1 patch 1. Everything is working fine.
  6. Fudley

    XML library for Delphi on Android

    I'm looking at VerySimpleXML - I think I can work with this one.
  7. Fudley

    XML library for Delphi on Android

    I'm looking for an XML library to use on Android. I am used to using NativeXML under Windows, so anything similiar to that would be perfect. Thanks much!
  8. Windows 11 Delphi 12.1 (haven't dived into 12.2 yet) GExperts, CnPack, MMX are installed. Right-clicking on the toolbars and selecting "Customize" I can then arrange the toolbars and icons, add new icons etc. All is well until I restart Deephi, and the toolbars are not as I left them. Some icons are missing. Some toolbars have blank spaces where the icons should be. I have tried locking the toolbars, and saving the desktop. Has anyone else run into this?
  9. Update : it took an agressive uninstall and manual uninstall and reinstall of delphi, but I'm happy to report I'm back in the saddle. 🤠🏇
  10. Tried the reinstall route. Ended up no longer registered to use Delphi! 😂. Can't make this stuff up... I bought a fairly pricey professional license bought about 6 months ago, but now can't run delphi at all (i try but am told "nope" by a harsh little screen) Maybe they have a support phone number i can call Monday. . Anyways, not your problem. Thanks so much for all the suggestions. This is a very helpful group.
  11. I've attached a screenshot. I started up Delphi 12 and alI I get is a top bar 103 pixels tall. And nothing I do can restore it to its original size. I use GExperts, CnPack and MMX.
  12. Fudley

    D12 TItemClickEvent undeclared identifier

    Dave - the inline method worked great thanks!
  13. Fudley

    D12 TItemClickEvent undeclared identifier

    Thanks Dave, Remy! Here's my reproducible (at least for me) example: unit testlistboxerror1; interface uses System.SysUtils, System.Types, System.UITypes, System.Classes, System.Variants, FMX.Types, FMX.Controls, FMX.Forms, FMX.Graphics, FMX.Dialogs, FMX.Controls.Presentation, FMX.StdCtrls, FMX.Layouts, FMX.ListBox; type TForm1 = class(TForm) Button1: TButton; ListBox1: TListBox; procedure Button1Tap(Sender: TObject; const Point: TPointF); procedure NoEventSetListBoxIndex (aListBox : TCustomListBox; aValue : integer); private public end; var Form1: TForm1; implementation {$R *.fmx} procedure TForm1.NoEventSetListBoxIndex (aListBox : TCustomListBox; aValue : integer); var eItemClickEvent: TItemClickEvent ; // also tried TCustomListBox.TItemClickEvent, same {<--[DCC Error] testlistboxerror1.pas(31): E2003 Undeclared identifier: 'TItemClickEvent ' } eGestureEvent : TGestureEvent; eTapEvent : TTapEvent; begin eItemClickEvent := aListBox.OnClick ; eGestureEvent := aListBox.OnGesture; eTapEvent := aListBox.OnTap; aListBox.OnClick := nil; aListBox.OnGesture := nil; aListBox.OnTap := nil; aListBox.Itemindex := aValue; aListBox.OnClick := eItemClickEvent ; aListBox.OnGesture := eGestureEvent; aListBox.OnTap := eTapEvent; end; procedure TForm1.Button1Tap(Sender: TObject; const Point: TPointF); begin NoEventSetListBoxIndex(ListBox1, 5); end; end.
  14. Fudley

    D12 TItemClickEvent undeclared identifier

    In this case, FMX.Listbox is definately in the uses clause
  15. Fudley

    D12 TItemClickEvent undeclared identifier

    Thanks. But still undeclared identifier TCustomListBox.TItemClickEvent
×