Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
User control
Message
De
25/11/2008 12:40:57
 
 
À
25/11/2008 09:40:37
Arjun Bagojikop
Dynamic Super Software
Sangli, Inde
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:
01364041
Vues:
16
>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)
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform