

Squall_FF8
Members-
Content Count
37 -
Joined
-
Last visited
Everything posted by Squall_FF8
-
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
-
How do I create an Android simulator under Delphi 11.3 ?
Squall_FF8 replied to FreeDelphiPascal's topic in FMX
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) -
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.
-
How to NOT save changes when compiling?
Squall_FF8 replied to Squall_FF8's topic in Delphi IDE and APIs
Woah, thank you guys!!! Both answer with searching (text/AI) will be very helpful in future! -
How to NOT save changes when compiling?
Squall_FF8 replied to Squall_FF8's topic in Delphi IDE and APIs
Thank you VERY MUCH!!! I have skimmed trough these options 2-3 times, but somehow skipping this. Thanks again! -
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?
-
I found the answer: ListBox := TStyledComboEdit(ComboBox.Presentation).ListBox
-
Any idea how to obtain a pointer to the dropped down LiestBox?
-
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)
-
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)
-
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.
-
How to change the Width of the dropdown list in tComboBox
Squall_FF8 replied to Squall_FF8's topic in FMX
It worked, Thank you very much!!!