Jump to content

Squall_FF8

Members
  • Content Count

    37
  • Joined

  • Last visited

Everything posted by Squall_FF8

  1. Squall_FF8

    Changing Row/Column line colors of cells in TGrid

    Thank you Serge_G! Correct me if I'm wrong, but looking in your code on Github and the French forum, I have to implement it by hooking OnDrawColunmnCell. If I want to manipulate: - the background color of cells:, FillRect - the border color of cells: FillStroke
  2. Squall_FF8

    How do I create an Android simulator under Delphi 11.3 ?

    How about using a good Android emulator, like Nox or Mumu? Lately I use Mumu to play games and works sometimes better then on real device (Razor Phone 2)
  3. Hey guys, I updated my Delphi to 12.2. Whenever I compile, build, ... the IDE saves any change in the source. How I can stop that? I'm used to save when I decide to. P.S. I was looking in Settings but cant find such option.
  4. Squall_FF8

    How to NOT save changes when compiling?

    Woah, thank you guys!!! Both answer with searching (text/AI) will be very helpful in future!
  5. Squall_FF8

    How to NOT save changes when compiling?

    Thank you VERY MUCH!!! I have skimmed trough these options 2-3 times, but somehow skipping this. Thanks again!
  6. Squall_FF8

    Access to the ListBox of tComboEdit

    Hey guys, I'm trying to implement: when the user presses ArrowDown key on tComboEdit, to open the ListBox and focus it (maybe even to select the first item). However unlike tComboBox, the LstBox is not exposed. How I can get a pointer to it?
  7. Squall_FF8

    Access to the ListBox of tComboEdit

    I found the answer: ListBox := TStyledComboEdit(ComboBox.Presentation).ListBox
  8. Squall_FF8

    Access to the ListBox of tComboEdit

    Any idea how to obtain a pointer to the dropped down LiestBox?
  9. Squall_FF8

    Access to the ListBox of tComboEdit

    Thank you for taking time to help me. I tried the code from your snippet. It works ... but not how I would like: - the listBox is not focused - you can't browse the list with the keyboard - by setting ItemIndex, you change the text (in the Edit part)
  10. Squall_FF8

    Access to the ListBox of tComboEdit

    That will do only the halve of the job - to show the ListBox,, but it will not focus it (also some other operations if I have a pointer)
  11. Hey guys, I'm using Delphi 12.2 with FMX project. I have a ComboBox with some items. I want the drop down list to be wider then the control itself. Can you help me out? I tried with: Combo.ListEdit.Width := xx; But nothing changes. When I read the Width it still the same old value.
  12. Squall_FF8

    How to change the Width of the dropdown list in tComboBox

    It worked, Thank you very much!!!
×