obulldog27
Programmer
is it possible to do a right click mouse down event pop up window for a drop down box. There is no mouse down event option for this type of control.
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Option Explicit
Public Declare Function SendMessage Lib "user32" _
Alias "SendMessageA" _
(ByVal hwnd As Long, _
ByVal wMsg As Long, _
ByVal wParam As Long, _
lParam As Any) As Long
Public Const CB_SHOWDROPDOWN = &H14F
SendMessage(Combo1.hwnd, CB_SHOWDROPDOWN, False, ByVal 0)