Date: 02-16-2022
Return to Index
created by gbSnippets
'An online ListBox control tutorial may be found at:
'http://www.garybeene.com/power/pb-tutor-controls.htm
'Primary Code:
'Syntax: Control Add ListBox, hDlg, id&, [items$()], x, y, xx, yy [, [style&] [, [exstyle&]]] [[,] Call CallBack]
Control Add ListBox, hDlg, 100, MyArray(), 50,50,75,100
'Compilable Example: (Jose Includes)
'The following compilable code demonstrates a dialog with a single ListBox control.
'The ListBox is loaded from an array at creation.
'The Dialog CallBack response to selecting a list item is demonstrated.
'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, "ListBox Test",300,300,200,200, %WS_SysMenu, 0 To hDlg
Control Add ListBox, hDlg, 100, MyArray(), 50,50,75,100
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 = %LBN_SelChange Then
MsgBox "Selected!"
End If
End Function
'gbs_00096
'Date: 03-10-2012
http://www.garybeene.com/sw/gbsnippets.htm