1
Segnalazione bug / Re: Bug su aggiunta colonne in GridView
« il: 06 Maggio 2012, 17:53:33 »
Ottimo! Attenderò con malcelata impazienza
Buon Lavoro!
Buon Lavoro!
19/05/2023: A causa di un errore sono stati cancellati, insieme ad account creati da bot, alcuni account legittimi. Si prega di leggere qui: https://www.gambas-it.org/smf/index.php?topic=9733.0
Questa sezione ti permette di visualizzare tutti i post inviati da questo utente. N.B: puoi vedere solo i post relativi alle aree dove hai l'accesso.
' Gambas class file
Public Sub Form_Open()
Dim hFrameBox As FrameBox
Dim hRb As RadioButton
Me.Center
Me.Width = 200
Me.Height = 150
hFrameBox = New FrameBox(FMain)
With hFrameBox
.Left = 10
.top = 10
.Width = 180
.Height = 130
.Text = "Frame box con bordo"
.Arrangement = 0
End With
hrb = New RadioButton(hFrameBox)
With hrb
.Left = 10
.top = 15
.Width = 150
.Height = 17
.Text = "Radio pulsante 1"
.Value = True
End With
hrb = New RadioButton(hFrameBox)
With hrb
.Left = 10
.top = 45
.Width = 150
.Height = 17
.Text = "Radio pulsante 2"
.Value = False
End With
hrb = New RadioButton(hFrameBox)
With hrb
.Left = 10
.top = 75
.Width = 150
.Height = 17
.Text = "Radio pulsante 3"
.Value = False
End With
End