Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
User control
Message
From
25/11/2008 12:40:57
 
 
To
25/11/2008 09:40:37
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:
01364041
Views:
15
>Hi All
>i am trying to create one user Control (Optional Button like vfp )
>and when i have add that control in my form ,i am could not chanage the location of redio button or its caption at design time .so please can suggest me how does it possible

You will need to create public properties in the user control and map them to the relevant contained object. e.g:
    Public Property RadioButton1Text() As String
        Get
            Return RadioButton1.Text
        End Get
        Set(ByVal value As String)
            RadioButton1.Text = value
        End Set
    End Property
(Untested - my VB's rusty)
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform