Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
HomeAnnouncementsFree MagazinesWhite PapersSubmit Content
Discussion GroupsASP.NETWindows FormsLanguages.NET FrameworkVisual Studio.NET
Articles.NET FrameworkASP.NETToolsWindows Forms
.NET DirectoryOpen Source ProjectsUser GroupsWeb Resources
Related Topics
Visual Basic 6SQL ServerMS AccessOther DB ProductsMS Server ProductsMore Topics ...

.NET Forum / ASP.NET / Building Controls / February 2007

Tip: Looking for answers? Try searching our database.

Custom Composite Control inherited from TextBox

Thread view: 
Enable EMail Alerts  Start New Thread
Thread rating: 
dan_williams@newcross-nursing.com - 24 Oct 2006 13:59 GMT
Hi,

I'm trying to create my own custom control based on the textbox, but
with additional properties to specify whether or not the textbox is a
required field, and if its needs to be validated against a regular
expression. I'd also like it to change its backcolor and be focused on
if it's invalid.

Here is my current VB code:-

Imports System.ComponentModel
Imports System.Web.UI
Imports System.Web.UI.WebControls

Public Class CustomTextBox
   Inherits TextBox

   Private req As RequiredFieldValidator
   Private reg As RegularExpressionValidator
   Dim _bgErrorColor As System.Drawing.Color
   Dim _required As Boolean
   Dim _regExp As String

   Protected Overloads Overrides Sub OnInit(ByVal e As EventArgs)

       req = New RequiredFieldValidator
       req.ControlToValidate = Me.ID
       req.ErrorMessage = "Value required for " & Me.ID
       req.Text = "*"

       reg = New RegularExpressionValidator
       reg.ControlToValidate = Me.ID
       reg.ErrorMessage = "Invalid value for " & Me.ID
       reg.Text = "*"
       If Me.RegExp <> "" Then reg.ValidationExpression = Me.RegExp

       Controls.Add(req)
       Controls.Add(reg)

   End Sub

   Protected Overloads Overrides Sub Render(ByVal w As HtmlTextWriter)
       MyBase.Render(w)
       If Me.Required Then req.RenderControl(w)
       If Me.RegExp <> "" Then reg.RenderControl(w)
   End Sub

   <Bindable(True), Category("Appearance"), DefaultValue("")> Property
[Required]() As Boolean
       Get
           Return _required
       End Get

       Set(ByVal Value As Boolean)
           _required = Value
       End Set
   End Property

   <Bindable(True), Category("Appearance"), DefaultValue("")> Property
[RegExp]() As String
       Get
           Return _regExp
       End Get

       Set(ByVal Value As String)
           _regExp = Value
       End Set
   End Property

   <Bindable(True), Category("Appearance"), DefaultValue("Red")>
Property [BgErrorColor]() As System.Drawing.Color
       Get
           Return _bgErrorColor
       End Get

       Set(ByVal Value As System.Drawing.Color)
           _bgErrorColor = Value
       End Set
   End Property

End Class

It seems to half work, but my required field validator does not appear
to the immediate right of my textbox, and if I put a validation summary
on my page, it shows the error message regardless of whether or not
i've specified the Required property of my control to true or false.

Does anyone know how i can get this to work, aswell as adding event
handlers or methods to set the focus to my control and make its
background color set to whatever i specify in my BgErrorColor property,
if the control is invalid?

Many thanks in advance for any suggestions

Dan Williams
John Saunders - 24 Oct 2006 22:32 GMT
> Hi,
>
[quoted text clipped - 3 lines]
> expression. I'd also like it to change its backcolor and be focused on
> if it's invalid.

I'd suggest that you create a composite control instead of deriving from
TextBox. Your composite control would  include the text box, the validator,
etc., as well as any tables etc. that you might need for layout.

John
intrader - 25 Feb 2007 18:49 GMT
> Hi,
>
[quoted text clipped - 91 lines]
>
> Dan Williams

I am guessing here, but what I think is happening is the the
MyBase.Render is also rendering the validators.

Free Magazines

Get these publications absolutely FREE for up to 12 months. There are no hidden fees and no obligation. Simply choose a title, complete the application form and submit it. Read more ...

Oracle MagazineNetwork ComputingComputer WorldBio-IT WorldeWeekInformation WeekInfosecurity
 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2009 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.