Gambas France BETA


Pas de compte ? Incription

ComboBox :

Exemple d'utilisation de ComboBox :





Exemple téléchargeable ici : ComboBox

Le Code :



1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
' Gambas class file

PUBLIC SUB btnQuitter_Click()

ME.Close()

END

PUBLIC SUB btnAjouter_Click()

ComboBox1.add(ComboBox1.Text)

END

PUBLIC SUB btnSupprimer_Click()

ComboBox1.Clear()

END

PUBLIC SUB btnCount_Click()

Message.Info(("il y a ") & Str$(ComboBox1.Count) & (" item(s)") & gb.CrLf & ("dans le ComboBox"))

END


====================

Navigation :



<-- Liens du Wiki : <--
<-- Accueil du WIKI : <--
<-- Contrôle par Contrôle <--

====================

Documentation :



====================