- This topic has 16 replies, 3 voices, and was last updated 4 years, 11 months ago by
Support.
-
AuthorPosts
-
February 27, 2021 at 3:00 pm #69897
Thank you for the message, this error will be fixed at the nearest days.
March 4, 2021 at 9:29 pm #69904In 16.01 the problem is not solved complety. The dropdownlist is not visible or in the background as in the picture in the attachment. When i made a new demo it works but not in my programm.
Attachments:
You must be logged in to view attached files.March 6, 2021 at 12:50 pm #69907It look’s like popup window is covered by panel placed on the form.
I’m right?March 6, 2021 at 3:30 pm #69909yep
March 7, 2021 at 7:46 am #69910This panel or form has some specific options used?
WS_EX_TOPMOST window style maybe?March 7, 2021 at 6:52 pm #69912The form has fsStayOnTop activated. With the Version 15.xx everything is working perfect.
March 13, 2021 at 9:56 am #69916In V16.02 it is still not working.
March 14, 2021 at 10:21 pm #69917Sorry, problem is that I can’t repeat the issue.
Can you help to repeat it somehow?March 15, 2021 at 4:28 pm #69918I had exactly same issue and fixed it like this in acPopupController.pas:
procedure TsPopupController.AnimShowPopup(AForm: TForm; wTime: word = 0; BlendValue: byte = MaxByte);
…
h := HWND_TOPMOST; //TopWndAfter; LasseMarch 16, 2021 at 3:29 pm #69922Thank you for the information. “TopWndAfter” used only with debugger for prevent of covering of debugger by “TopMost” popup forms.
Robert, can you confirm that issue exists under debugger only?March 16, 2021 at 9:11 pm #69927Yes i found out that the problem only is there when i compile and run the program. Wenn i run the .exe the combobox is working ok. The only problem what is happening on both situations is that after the oncreate event from the main form a onChange event is triggered from a combobox who is on an other form.this is very strange.
Hope this info helps
March 20, 2021 at 6:19 am #69944The only problem what is happening on both situations is that after the oncreate event from the main form a onChange event is triggered from a combobox who is on an other form.
Can you help me to repeat this situation? What should be done for that?
March 23, 2021 at 5:34 pm #69950I found the reason why the onChange event is triggered. The problem is in the procedure sComboBox2.Clear.
Two things are wrong in this procedure. 1) after clear the onChange event is triggered. 2) the Items ale not cleared, only the .text is cleared. The standard combobox works ok.The dropdownlist is not visible or in the background wenn i run the programm in delphi enviroment.
March 23, 2021 at 5:36 pm #69951sorry i forgot the demo programm
Attachments:
You must be logged in to view attached files.March 25, 2021 at 8:43 am #69955ComboBox.Clear and ComboBox.Items.Clear are two different things.
April 1, 2021 at 7:02 am #69958Thank you, the issue will be solved in the nearest release.
-
AuthorPosts
- You must be logged in to reply to this topic.