sridhar412
IS-IT--Management
Without using supercombo
How can i force the dropdown of combobox?
Sridhar
How can i force the dropdown of combobox?
Sridhar
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.
PUBLIC oform1
oform1=NEWOBJECT("form1")
oform1.Show
RETURN
DEFINE CLASS form1 AS form
DoCreate = .T.
Caption = "Form1"
Name = "FORM1"
ADD OBJECT text1 AS textbox WITH ;
Height = 23, ;
Left = 60, ;
Top = 60, ;
Width = 100, ;
Name = "Text1"
ADD OBJECT text2 AS textbox WITH ;
Height = 23, ;
Left = 216, ;
Top = 48, ;
Width = 100, ;
Name = "Text2"
ADD OBJECT combo1 AS combobox WITH ;
RowSourceType = 1, ;
RowSource = "1,2,3,4,5,6,7,8", ;
Height = 24, ;
Left = 144, ;
Top = 132, ;
Width = 100, ;
Name = "Combo1"
PROCEDURE combo1.GotFocus
KEYBOARD "{F4}"
ENDPROC
ENDDEFINE