It's been a long road but I've been able to manipulate most of the controls on the AdvancedForm, but now I would either like to make one of the RadTextBox have a button and have it act like a hyperlink and redirect to another form or add a hyperlink control to the AdvancedForm.  I tried
That was executing every time I tried to edit an appointment.  I also tried
but the control never showed up?  Any ideas?
                                
Dim txtActTickID As Telerik.Web.UI.RadTextBox = DirectCast(e.Container.FindControl("AttrAction Ticket"), Telerik.Web.UI.RadTextBox) txtActTickID.ReadOnly = True txtActTickID.BackColor = Drawing.Color.LightGray txtActTickID.ShowButton = True txtActTickID.ClientEvents.OnButtonClick = "ShowAT(" & txtActTickID.Text & ")" Dim objHL As New HyperLink objHL.NavigateUrl = "TestForm.aspx" objHL.Text = "Show Test Form" e.Container.Controls.Add(objHL) 
