Je ne sais pas si je perds la tête ou si ça n'existe pas.
J'aimerai savoir comment avoir le même rendu en PB que ça
Code : Tout sélectionner
<select name="LISTE" size="1" dir="ltr" lang="fr">
<option>choix 1</option>
<option>choix 2</option>
<option>choix 3</option>
</select>
Code : Tout sélectionner
If OpenWindow(0,0,0,270,140,"ListViewGadget",#PB_Window_SystemMenu|#PB_Window_ScreenCentered)
ListViewGadget(0, 15, 20, 110, 18, #PB_ListView_ClickSelect)
For a=1 To 3
AddGadgetItem (0,-1,"Choix "+Str(a))
Next
Repeat : Until WaitWindowEvent()=#PB_Event_CloseWindow
EndIf