Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
User control
Message
De
26/11/2008 00:00:33
Arjun Bagojikop
Dynamic Super Software
Sangli, Inde
 
 
À
25/11/2008 12:40:57
Information générale
Forum:
ASP.NET
Catégorie:
Conception classe
Titre:
Versions des environnements
Environment:
VB 8.0
OS:
Windows XP SP2
Network:
Windows XP
Database:
MS SQL Server
Application:
Desktop
Divers
Thread ID:
01363973
Message ID:
01364130
Vues:
12
Thanks Viv

but i am adding no of buttons in my form through user control custom property like this
Private nbtn, i As Integer
Private oradio As New System.Windows.Forms.RadioButton
Dim cntrx As Integer = Me.Location.X
Dim octr As Control


Property Buottos() As Integer
Get
Return nbtn
End Get
Set(ByVal value As Integer)
nbtn = value



Me.Controls.Clear()
For i = 1 To nbtn
Dim btn1 As New System.Windows.Forms.RadioButton

Me.Controls.Add(btn1)
btn1.Text = "Radiobtn" + i.ToString.Trim
btn1.AutoSize = True
btn1.Location = New System.Drawing.Point(i * 80, 3)

'oradio.Name = "rb" + i.ToString.Trim
Next

End Set
End Property
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform