RE: Controls disappear from designer...

From: Zorpiedoman (nowheremane_at_beatles.com)
Date: 12/02/04


Date: Thu, 2 Dec 2004 13:11:02 -0800

Aaron -

There are a number of reasons this will happen, so I can't tell you why it
happened. Usually this happens because some code you wrote created an error
condition that would not allow the form design to complete.

I can tell you how to fix it without starting all over, however. In the
code for the form, check the mysterious "Windows Form Designer generated
code" region...

It normally looks something like this:

Public Sub New()
        MyBase.New()

        'This call is required by the Windows Form Designer.
        InitializeComponent()

        'Add any initialization after the InitializeComponent() call

    End Sub

    'Form overrides dispose to clean up the component list.
    Protected Overloads Overrides Sub Dispose(ByVal disposing As Boolean)
        If disposing Then
            If Not (components Is Nothing) Then
                components.Dispose()
            End If
        End If
        MyBase.Dispose(disposing)
    End Sub

    'Required by the Windows Form Designer
    Private components As System.ComponentModel.IContainer

    'NOTE: The following procedure is required by the Windows Form Designer
    'It can be modified using the Windows Form Designer.
    'Do not modify it using the code editor.
    Friend WithEvents TextBox1 As System.Windows.Forms.TextBox
    <System.Diagnostics.DebuggerStepThrough()> Private Sub
InitializeComponent()
        Me.TextBox1 = New System.Windows.Forms.TextBox
        Me.SuspendLayout()
        '
        'TextBox1
        '
        Me.TextBox1.Location = New System.Drawing.Point(0, 0)
        Me.TextBox1.Name = "TextBox1"
        Me.TextBox1.TabIndex = 0
        Me.TextBox1.Text = "TextBox1"
        '
        'Form2
        '
        Me.AutoScaleBaseSize = New System.Drawing.Size(5, 13)
        Me.ClientSize = New System.Drawing.Size(568, 421)
        Me.Controls.Add(Me.TextBox1)
        Me.Name = "Form2"
        Me.ResumeLayout(False)

    End Sub

#End Region

What usually is missing is the line(s) in the InitializeComponent section
thats sets your control objects to new instances of the control:

     "Me.TextBox1 = New System.Windows.Forms.TextBox"

OR the line(s) that add the control(s) to the form's control collection are
missing:

     "Me.Controls.Add(Me.TextBox1)"

Just figure out what is missing, and type it in, and you should be good to go!

--Zorpie

"Aaron Smith" wrote:

> I have a problem... Have a form, made some changes.. now all the
> controls are gone. I didn't make any changes to the designer generated
> region.. I'm not really sure what happened to them, but this has
> happened before where one or two will disappear.. They are still in the
> code too.. And if I try to add a new control with the same name, it says
> it exists... Any ideas?
> --
> ---
> Aaron Smith
> Remove -1- to E-Mail me. Spam Sucks.
>



Relevant Pages

  • Re: Recognize change immediately
    ... If there are missing fields the record must not be ... Validate is a general sub, not attached to any control, form, etc. ... > procedure of the Tab Control. ...
    (microsoft.public.access.formscoding)
  • Re: Why is handles on event missing?
    ... If you create a Sub for a particular control's event, ... click event, then subsequently delete the control, the sub for the click ... Button.click" will be missing. ... > the event started firing. ...
    (microsoft.public.dotnet.languages.vb)
  • Re: Controls disappear from designer...
    ... check the mysterious "Windows Form Designer generated ... > Public Sub New ... > What usually is missing is the linein the InitializeComponent section ... > thats sets your control objects to new instances of the control: ...
    (microsoft.public.dotnet.languages.vb)
  • Re: Simple Insert Into...
    ... You can store unbound control data in a variable, ... in the sql. ... Dim strSQL As String ... In your form's Sub, you'll wind up with something like the following: ...
    (microsoft.public.access.modulesdaovba)
  • Re: Simple Insert Into...
    ... it is in a control on the form; and is unbound (it's actually a combo ... box that is used as a dropdown list, values taken from a different table; SQL ... I need this value to assign a unique ID to the entire recordset being ... In your form's Sub, you'll wind up with something like the following: ...
    (microsoft.public.access.modulesdaovba)