Practical Web Programming

Monday, December 31, 2007

Visual Basic: How To Automatically Drop Down Combo Box

Here's a code snippet on how to automatically drow down the combo box control in Visual Basic 6 without using an API

'-->HOW TO AUTO DROPDOWN A COMBO WITHOUT USING API FUNCTION
Private Sub Combo1_GotFocus()
SendKeys "%+{DOWN}"
End Sub

0 comments:

Recent Post