Gambas France BETA


Pas de compte ? Incription

Dial

À propos de ce code

Démonstration des Dial

Code source

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
' Gambas class file

PUBLIC SUB tbQuitter_Click()

ME.Close()

END

PUBLIC SUB LCDLabel1_Arrange()

LCDLabel1.Text = Str$(Dial1.Value)

END

PUBLIC SUB Dial1_Change()

LCDLabel1_Arrange()

END

Commentaires