Jump to content

David Duffy

Members
  • Content Count

    15
  • Joined

  • Last visited

Community Reputation

0 Neutral

Recent Profile Visitors

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

  1. David Duffy

    Best way to play short sound file?

    Use the Bass audio library (DLLs) ?
  2. David Duffy

    Delphi 11.3 : FORSAKEN

    I've not found that to be the case on my machines.
  3. David Duffy

    Audio/DSP librarys for use in FireMonkey

    Maybe take a look at the Bass audio library?
  4. David Duffy

    Printer port

    No idea sorry. I would guess most users set up the printer once.
  5. David Duffy

    Printer port

    Do you really need to change the port for the printer, or do you want to select a specific printer to print to?
  6. David Duffy

    TPopupMenu with group headers

    I have it working nicely with fixed colours. Having it theme aware would have been nice but is not a real issue. It was more about learning.
  7. David Duffy

    TPopupMenu with group headers

    OK, is there a way to get the ActiveStyle another way in XE ?
  8. David Duffy

    TPopupMenu with group headers

    Is TStyleManager available in Delphi XE ?
  9. David Duffy

    TPopupMenu with group headers

    @nglthach what was the component / solution you posted the image of?
  10. David Duffy

    TPopupMenu with group headers

    I think TMS have a menu that can do that.
  11. David Duffy

    Run Time Sub Menu Gap

    Yes, sorry I didn't realise at the time of posting that it was specific to the TMS version.
  12. David Duffy

    Run Time Sub Menu Gap

    It was and by a very smart guy! 😄
  13. David Duffy

    Tab Order Confusion..

    My guess is that the greyed out ones have TabStop set to false.
  14. David Duffy

    Run Time Sub Menu Gap

    Here's the code: procedure TfmMain.UpdateHelpMenu; var MI: TMenuItem; x: Integer; begin while mnShortcutList.Count > 0 do mnShortcutList.Delete(0); for x := 0 to Prefs.Shortcuts.Count-1 do begin MI := TMenuItem.Create(mnShortcutList); MI.Caption := Prefs.Shortcuts[x].HelpCaption; MI.ShortCut := Prefs.Shortcuts[x].Shortcut; mnShortcutList.Add(MI); end; end;
  15. David Duffy

    Run Time Sub Menu Gap

    Hi all, In my Delphi XE application I have a main menu and some of the menu items have a sub menu. The sub menus that are created at design time are aligned to the parent menu item correctly, but the ones I create in code always have a gap between the menu item and the sub menu. Is there some other property of the sub menu items I need to set apart from owner and parent to get them to display correctly?
×