Date: 02-16-2022
Return to Index
created by gbSnippets
'An online ComboBox control tutorial may be found at:
'http://www.garybeene.com/power/pb-tutor-controls.htm
'Primary Code:
'Syntax: Control Add ComboBox, hDlg, id&, [items$()], x, y, xx, yy [, [style&] [, [exstyle&]]] [[,] Call CallBack]
Control Add ComboBox, hDlg, 100, MyArray(), 50,50,75,100
'Compilable Example: (Jose Includes)
'The following compilable code demonstrates a dialog with a single
'ComboBox control, loaded from an array of 4 elements.
'The Dialog CallBack responds to a dropdown selection (by mouse or by arrow key selection)
'Controls can also have a Callback function of their own.
#Compiler PBWin 9, PBWin 10
#Compile EXE
#Dim All
%Unicode=1
Global hDlg As Dword
Function PBMain() As Long
Dim MyArray(3) As String
Array Assign MyArray() = "zero", "one", "two", "three"
Dialog New Pixels, 0, "ComboBox Test",300,300,200,200, %WS_SysMenu, 0 To hDlg
Control Add ComboBox, hDlg, 100, MyArray(), 50,50,75,100
ComboBox Select hDlg, 100, 1
Dialog Show Modal hDlg Call DlgProc
End Function
CallBack Function DlgProc() As Long
If CB.Msg = %WM_Command AND CB.Ctl = 100 AND CB.Ctlmsg = %CBN_SelChange Then
MsgBox "Selected!"
End If
End Function
'gbs_00087
'Date: 03-10-2012
http://www.garybeene.com/sw/gbsnippets.htm