Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
User control
Message
From
26/11/2008 00:00:33
Arjun Bagojikop
Dynamic Super Software
Sangli, India
 
 
General information
Forum:
ASP.NET
Category:
Class design
Title:
Environment versions
Environment:
VB 8.0
OS:
Windows XP SP2
Network:
Windows XP
Database:
MS SQL Server
Application:
Desktop
Miscellaneous
Thread ID:
01363973
Message ID:
01364130
Views:
13
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
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform