Important Notice: Our web hosting provider recently started charging us for additional visits, which was unexpected. In response, we're seeking donations. Depending on the situation, we may explore different monetization options for our Community and Expert Contributors. It's crucial to provide more returns for their expertise and offer more Expert Validated Answers or AI Validated Answers. Learn more about our hosting issue here.

How do I check if the editors drop down portion is visible or hidden?

drop editor hidden portion visible
0
Posted

How do I check if the editors drop down portion is visible or hidden?

0

You can use a sample like follows: Private Declare Function FindWindow Lib “user32” Alias “FindWindowA” (ByVal lpClassName As String, ByVal lpWindowName As String) As Long Private Function isDropped() ‘ Specifies whether the control’s drop down portion is visible or not isDropped = Not FindWindow(“HostPopupWindow”, “”) = 0 End Function The following sample advance to the next line when the ENTER key is pressed, and does the default action when an editor of drop down type is opened:

Related Questions

What is your question?

*Sadly, we had to bring back ads too. Hopefully more targeted.

Experts123