[OK] Comment créer l'equivalent d'un Select/option html

Vous débutez et vous avez besoin d'aide ? N'hésitez pas à poser vos questions
Avatar de l’utilisateur
Ar-S
Messages : 9540
Inscription : dim. 09/oct./2005 16:51
Contact :

[OK] Comment créer l'equivalent d'un Select/option html

Message par Ar-S »

Voilà,
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>
J'ai bien tenté le ListViewgadget mais je n'obtiens pas vraiment quelque chose de sympa.

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
Dernière modification par Ar-S le mer. 07/avr./2010 17:11, modifié 1 fois.
~~~~Règles du forum ~~~~
⋅.˳˳.⋅ॱ˙˙ॱ⋅.˳Ar-S ˳.⋅ॱ˙˙ॱ⋅.˳˳.⋅
W11x64 PB 6.x
Section HORS SUJET : ICI
LDV MULTIMEDIA : Dépannage informatique & mes Logiciels PB
UPLOAD D'IMAGES : Uploader des images de vos logiciels
Avatar de l’utilisateur
TazNormand
Messages : 1297
Inscription : ven. 27/oct./2006 12:19
Localisation : Calvados (14)

Re: Comment créer l'equivalent d'un Select/option html

Message par TazNormand »

Une combobox ferait l'affaire, non ?

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)
  ComboBoxGadget(0,15,20,110,18)
	For a=1 To 3
		AddGadgetItem (0,-1,"Choix "+Str(a))
	Next
	Repeat : Until WaitWindowEvent()=#PB_Event_CloseWindow
EndIf
Image
Image
Avatar de l’utilisateur
Ar-S
Messages : 9540
Inscription : dim. 09/oct./2005 16:51
Contact :

Re: Comment créer l'equivalent d'un Select/option html

Message par Ar-S »

C'est exactement ça, comme quoi je fatigue parfois..
Merci
~~~~Règles du forum ~~~~
⋅.˳˳.⋅ॱ˙˙ॱ⋅.˳Ar-S ˳.⋅ॱ˙˙ॱ⋅.˳˳.⋅
W11x64 PB 6.x
Section HORS SUJET : ICI
LDV MULTIMEDIA : Dépannage informatique & mes Logiciels PB
UPLOAD D'IMAGES : Uploader des images de vos logiciels
Répondre