Hello,
I am trying t extend appointment as I need to ad a fe more fields and hae read the example in onlin help. However I am having issues using a string please can you advise on the syntax that should be placed in the Get property of the GetClient method as the line MyBase.SetValue(BureauAppointment.ClientID, "") is not correct where the "" is placed.
Thanks
Imports Infragistics.WebUI.Shared
Imports Microsoft.VisualBasic
Inherits Appointment
MyBase.New(info)
End Sub
Public Property GetClient() As String
MyBase.SetValue(BureauAppointment.ClientID, "") //// Not Working
End Get
MyBase.SetValue(BureauAppointment.ClientID, value)
End Set
End Property
End Class
MyBase.GetValue for your get
All Sorted