473,398 Members | 2,525 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,398 software developers and data experts.

Controls disapear after pasting some code. WHY????

Hi Everyone.
I have been designing a form with about 100 or so controls and today I
pasted some code from another test project into this one and then all the
controls on the form disapeared from view. If I look at the
Region " Windows Form Designer generated code" section I can see the code
for the controls are there. Except for a few controls, like a tab control and
some labels (these controls are highlighted with errors). Why would this
happen, and how do I get the control back into view. This makes no since.
Thanks for any help.
Michael

Nov 23 '05 #1
10 1359
Michael wrote:
Hi Everyone.
I have been designing a form with about 100 or so controls and today I
pasted some code from another test project into this one and then all the
controls on the form disapeared from view. If I look at the
Region " Windows Form Designer generated code" section I can see the code
for the controls are there. Except for a few controls, like a tab control and
some labels (these controls are highlighted with errors). Why would this
happen, and how do I get the control back into view. This makes no since.
Thanks for any help.
Michael


Are you sure the controls aren't there and are just hidden by another
control. There is a dropdown in the property view that shows all
controls on the form. Is your controls listed in there?

Chris
Nov 23 '05 #2
Dear Michael,

Could you please tell us what code was pasted and what the errors are, you
are getting? If the controls on a form have some kind of error, these
controls will not show up. So you need to resolve these first and then (if
you are lucky) you would get the controls visible again (as now, they load
without errors).

Hope I helped you,

Michel van den Berg

"Michael" <Mi*****@discussions.microsoft.com> schreef in bericht
news:50**********************************@microsof t.com...
Hi Everyone.
I have been designing a form with about 100 or so controls and today I
pasted some code from another test project into this one and then all the
controls on the form disapeared from view. If I look at the
Region " Windows Form Designer generated code" section I can see the code
for the controls are there. Except for a few controls, like a tab control
and
some labels (these controls are highlighted with errors). Why would this
happen, and how do I get the control back into view. This makes no since.
Thanks for any help.
Michael

Nov 23 '05 #3

"I Don't Like Spam" <no@spam.com> wrote in message
news:e8**************@TK2MSFTNGP12.phx.gbl...
Are you sure the controls aren't there and are just hidden by another
control. There is a dropdown in the property view that shows all
controls on the form. Is your controls listed in there?

Chris


I like to use the Document Outline window for this (finding a control on a
form).

Ctrl-Alt-T

Greg
Nov 23 '05 #4
"Greg Burns" <bl*******@newsgroups.nospam> wrote in message news:uH**************@TK2MSFTNGP15.phx.gbl...

"I Don't Like Spam" <no@spam.com> wrote in message news:e8**************@TK2MSFTNGP12.phx.gbl...
Are you sure the controls aren't there and are just hidden by another control. There is a dropdown in the property
view that shows all
controls on the form. Is your controls listed in there?

Chris


I like to use the Document Outline window for this (finding a control on a form).

Ctrl-Alt-T


It's Ctrl-Alt-D in my IDE (VS.NET 2003)--but it
doesn't "find" any controls on any of my forms...

Nov 23 '05 #5

"Micky" <mi***@n05pam.com> wrote in message news:dlh2q2$nn7>> I like to use
the Document Outline window for this (finding a control on a form).

Ctrl-Alt-T


It's Ctrl-Alt-D in my IDE (VS.NET 2003)--but it
doesn't "find" any controls on any of my forms...


Hmm. Actually being able to search would be nice wouldn't it?

It's Ctrl-Alt-T in both 2003 & 2005 on my machine, wth both [Default
Settings] and VB6 keyboard scheme...
Nov 23 '05 #6
Hi Chris,
THanks for the reply. I had a tabcontrol with about 5 tabpages on it. After
pasting the code into the editor the tabcontrol seemed to have been removed
some how, although 4 of the 5 tabpages where still there. Most of the
controls on the missing tabpage still seem to be listed. Yesterday I took
form into another project and added the Tabcontrol and I'm slowly trying to
rebuild the form by connecting the controls to the tabpages. I'm doing this
by adding the controls back into the tabpages and form with code like this
Me.TabControl1.Controls.Add(Me.TabPage1)
This code is in the "Form Designer generated code" section. Does this help
any.
Thanks again for the reply.
Michael
"I Don't Like Spam" wrote:
Michael wrote:
Hi Everyone.
I have been designing a form with about 100 or so controls and today I
pasted some code from another test project into this one and then all the
controls on the form disapeared from view. If I look at the
Region " Windows Form Designer generated code" section I can see the code
for the controls are there. Except for a few controls, like a tab control and
some labels (these controls are highlighted with errors). Why would this
happen, and how do I get the control back into view. This makes no since.
Thanks for any help.
Michael


Are you sure the controls aren't there and are just hidden by another
control. There is a dropdown in the property view that shows all
controls on the form. Is your controls listed in there?

Chris

Nov 23 '05 #7
Hi Michel,
I pasted the code right below the " Windows Form Designer generated code"
region, and the region was closed so it should not have overwriten any of
that code. Right After pasting the code, the tabcontrol disapeared from the
form without any error messages showing. After more investigation, I found 4
of the 5 tabpages in the code (in the region above). Somehow the tabcontrol
and 1 tabpage was totally removed from the form somehow. The form has no code
except for a few other control loading (conbos & flexgrid) functions. Here is
the code I pasted into the form.
Private Sub SetHeaders()
Dim i%
' initialize control
flxFamilyHistory1.Styles.Normal.WordWrap = True
flxFamilyHistory1.Cols.Count = 6
flxFamilyHistory1.Rows.Fixed = 2
flxFamilyHistory1.AllowMerging = AllowMergingEnum.FixedOnly
' create row headers
flxFamilyHistory1.Rows(0).AllowMerging = True
' four cells, will merge
Dim rng As CellRange = flxFamilyHistory1.GetCellRange(0, 1, 0, 2)
rng.Data = "If Living"
' four cells, will merge
rng = flxFamilyHistory1.GetCellRange(0, 3, 0, 4)
rng.Data = "If Deceased"
flxFamilyHistory1(1, 1) = "Age"
flxFamilyHistory1(1, 2) = "Health"
flxFamilyHistory1(1, 3) = "Age of Death"
flxFamilyHistory1(1, 4) = "Cause of Death"
flxFamilyHistory1(1, 5) = "Who"
' create column header
flxFamilyHistory1.Cols(0).AllowMerging = True
' two cells, will merge
rng = flxFamilyHistory1.GetCellRange(0, 0, 1, 0)
rng.Data = "Person"
' align and autozise the cells
flxFamilyHistory1.Styles.Fixed.TextAlign = TextAlignEnum.CenterCenter
flxFamilyHistory1.AutoSizeCols(1, flxFamilyHistory1.Cols.Count - 2,
10)
flxFamilyHistory1.Cols(5).Width = 150
End Sub

Private Sub SetFixedColumn()
flxFamilyHistory1(2, 0) = "Father"
flxFamilyHistory1(3, 0) = "Mother"
flxFamilyHistory1(4, 0) = "Brothers"
flxFamilyHistory1(9, 0) = "Sisters"
End Sub
The form will not load right now because the VB generated code still has
references to controls that where removed/lost saying that the control is not
a member of the form. Yet it still has the code like:
Me.Label4 = New System.Windows.Forms.Label
further down in the code:
Me.TabPage1.Controls.Add(Me.Label4)
further down in the code:
Me.Label4.Location = New System.Drawing.Point(16, 339)
Me.Label4.Name = "Label4"
Me.Label4.Size = New System.Drawing.Size(176, 16)
Me.Label4.TabIndex = 5
Me.Label4.Text = "Have you ever had a transfusion?"
Does any of this make since to anyone. Thanks for the reply and suggestions.
Michael
Nov 23 '05 #8
Dear Michael,

I must admit it is very strange! To resolve this issue please tel me if I
correctly understand you:

- You had a form with many controls on it (question: are these only the
standard winform controls or 3rd party/inherited controls?)
- Next you pasted the code (as shown below = 2 subs).
- Now, suddenly, some controls are gone from your form (questions: Is your
form still drawn in the designer? Are there on this moment any errors? If
yes, then please state the errors)

Hopefully we/I can help you out (otherwise, contacting MS is suggested),

Michel van den Berg
"Michael" <Mi*****@discussions.microsoft.com> schreef in bericht
news:B7**********************************@microsof t.com...
Hi Michel,
I pasted the code right below the " Windows Form Designer generated code"
region, and the region was closed so it should not have overwriten any of
that code. Right After pasting the code, the tabcontrol disapeared from
the
form without any error messages showing. After more investigation, I found
4
of the 5 tabpages in the code (in the region above). Somehow the
tabcontrol
and 1 tabpage was totally removed from the form somehow. The form has no
code
except for a few other control loading (conbos & flexgrid) functions. Here
is
the code I pasted into the form.
Private Sub SetHeaders()
Dim i%
' initialize control
flxFamilyHistory1.Styles.Normal.WordWrap = True
flxFamilyHistory1.Cols.Count = 6
flxFamilyHistory1.Rows.Fixed = 2
flxFamilyHistory1.AllowMerging = AllowMergingEnum.FixedOnly
' create row headers
flxFamilyHistory1.Rows(0).AllowMerging = True
' four cells, will merge
Dim rng As CellRange = flxFamilyHistory1.GetCellRange(0, 1, 0, 2)
rng.Data = "If Living"
' four cells, will merge
rng = flxFamilyHistory1.GetCellRange(0, 3, 0, 4)
rng.Data = "If Deceased"
flxFamilyHistory1(1, 1) = "Age"
flxFamilyHistory1(1, 2) = "Health"
flxFamilyHistory1(1, 3) = "Age of Death"
flxFamilyHistory1(1, 4) = "Cause of Death"
flxFamilyHistory1(1, 5) = "Who"
' create column header
flxFamilyHistory1.Cols(0).AllowMerging = True
' two cells, will merge
rng = flxFamilyHistory1.GetCellRange(0, 0, 1, 0)
rng.Data = "Person"
' align and autozise the cells
flxFamilyHistory1.Styles.Fixed.TextAlign =
TextAlignEnum.CenterCenter
flxFamilyHistory1.AutoSizeCols(1, flxFamilyHistory1.Cols.Count - 2,
10)
flxFamilyHistory1.Cols(5).Width = 150
End Sub

Private Sub SetFixedColumn()
flxFamilyHistory1(2, 0) = "Father"
flxFamilyHistory1(3, 0) = "Mother"
flxFamilyHistory1(4, 0) = "Brothers"
flxFamilyHistory1(9, 0) = "Sisters"
End Sub
The form will not load right now because the VB generated code still has
references to controls that where removed/lost saying that the control is
not
a member of the form. Yet it still has the code like:
Me.Label4 = New System.Windows.Forms.Label
further down in the code:
Me.TabPage1.Controls.Add(Me.Label4)
further down in the code:
Me.Label4.Location = New System.Drawing.Point(16, 339)
Me.Label4.Name = "Label4"
Me.Label4.Size = New System.Drawing.Size(176, 16)
Me.Label4.TabIndex = 5
Me.Label4.Text = "Have you ever had a transfusion?"
Does any of this make since to anyone. Thanks for the reply and
suggestions.
Michael

Nov 23 '05 #9
Hi Michel,
The form itself does show in the designer just fine (but no controls show).
I do have 2 Componentone Flaxgrids on the form. All other controls are
standard controls.
There are alot of " 'controlname' is not a member of FormName" errors, but
thats it. Did not have these before the code was pasted to the form.
I'm in the process of fixing it. I do have the tabcontrol back in a test
project. I had to add the control to the form, then I went into the Desiner
generated code and added/fixed the code that loads the tabcontrol and
tabpages. I'm hoping this does not happen again as this can be very time
consuming. This time it lost track of about 20 or so controls. Thanks again
for your time.
Michael

"Michel van den Berg" wrote:
Dear Michael,

I must admit it is very strange! To resolve this issue please tel me if I
correctly understand you:

- You had a form with many controls on it (question: are these only the
standard winform controls or 3rd party/inherited controls?)
- Next you pasted the code (as shown below = 2 subs).
- Now, suddenly, some controls are gone from your form (questions: Is your
form still drawn in the designer? Are there on this moment any errors? If
yes, then please state the errors)

Hopefully we/I can help you out (otherwise, contacting MS is suggested),

Michel van den Berg
"Michael" <Mi*****@discussions.microsoft.com> schreef in bericht
news:B7**********************************@microsof t.com...
Hi Michel,
I pasted the code right below the " Windows Form Designer generated code"
region, and the region was closed so it should not have overwriten any of
that code. Right After pasting the code, the tabcontrol disapeared from
the
form without any error messages showing. After more investigation, I found
4
of the 5 tabpages in the code (in the region above). Somehow the
tabcontrol
and 1 tabpage was totally removed from the form somehow. The form has no
code
except for a few other control loading (conbos & flexgrid) functions. Here
is
the code I pasted into the form.
Private Sub SetHeaders()
Dim i%
' initialize control
flxFamilyHistory1.Styles.Normal.WordWrap = True
flxFamilyHistory1.Cols.Count = 6
flxFamilyHistory1.Rows.Fixed = 2
flxFamilyHistory1.AllowMerging = AllowMergingEnum.FixedOnly
' create row headers
flxFamilyHistory1.Rows(0).AllowMerging = True
' four cells, will merge
Dim rng As CellRange = flxFamilyHistory1.GetCellRange(0, 1, 0, 2)
rng.Data = "If Living"
' four cells, will merge
rng = flxFamilyHistory1.GetCellRange(0, 3, 0, 4)
rng.Data = "If Deceased"
flxFamilyHistory1(1, 1) = "Age"
flxFamilyHistory1(1, 2) = "Health"
flxFamilyHistory1(1, 3) = "Age of Death"
flxFamilyHistory1(1, 4) = "Cause of Death"
flxFamilyHistory1(1, 5) = "Who"
' create column header
flxFamilyHistory1.Cols(0).AllowMerging = True
' two cells, will merge
rng = flxFamilyHistory1.GetCellRange(0, 0, 1, 0)
rng.Data = "Person"
' align and autozise the cells
flxFamilyHistory1.Styles.Fixed.TextAlign =
TextAlignEnum.CenterCenter
flxFamilyHistory1.AutoSizeCols(1, flxFamilyHistory1.Cols.Count - 2,
10)
flxFamilyHistory1.Cols(5).Width = 150
End Sub

Private Sub SetFixedColumn()
flxFamilyHistory1(2, 0) = "Father"
flxFamilyHistory1(3, 0) = "Mother"
flxFamilyHistory1(4, 0) = "Brothers"
flxFamilyHistory1(9, 0) = "Sisters"
End Sub
The form will not load right now because the VB generated code still has
references to controls that where removed/lost saying that the control is
not
a member of the form. Yet it still has the code like:
Me.Label4 = New System.Windows.Forms.Label
further down in the code:
Me.TabPage1.Controls.Add(Me.Label4)
further down in the code:
Me.Label4.Location = New System.Drawing.Point(16, 339)
Me.Label4.Name = "Label4"
Me.Label4.Size = New System.Drawing.Size(176, 16)
Me.Label4.TabIndex = 5
Me.Label4.Text = "Have you ever had a transfusion?"
Does any of this make since to anyone. Thanks for the reply and
suggestions.
Michael


Nov 23 '05 #10
Dear Michael,

Thank you for giving the information. I must honestly say I don't know what
it can be, but I do recommend you, if you have the time that is, to
communicate with MS itself. Hopefully, this can be resolved as a bug and be
fixed.

Sorry that I couldn't help more,

Michel van den Berg

--
== Remove nospam to email me ==
"Michael" <Mi*****@discussions.microsoft.com> schreef in bericht
news:1F**********************************@microsof t.com...
Hi Michel,
The form itself does show in the designer just fine (but no controls
show).
I do have 2 Componentone Flaxgrids on the form. All other controls are
standard controls.
There are alot of " 'controlname' is not a member of FormName" errors, but
thats it. Did not have these before the code was pasted to the form.
I'm in the process of fixing it. I do have the tabcontrol back in a test
project. I had to add the control to the form, then I went into the
Desiner
generated code and added/fixed the code that loads the tabcontrol and
tabpages. I'm hoping this does not happen again as this can be very time
consuming. This time it lost track of about 20 or so controls. Thanks
again
for your time.
Michael

"Michel van den Berg" wrote:
Dear Michael,

I must admit it is very strange! To resolve this issue please tel me if I
correctly understand you:

- You had a form with many controls on it (question: are these only the
standard winform controls or 3rd party/inherited controls?)
- Next you pasted the code (as shown below = 2 subs).
- Now, suddenly, some controls are gone from your form (questions: Is
your
form still drawn in the designer? Are there on this moment any errors? If
yes, then please state the errors)

Hopefully we/I can help you out (otherwise, contacting MS is suggested),

Michel van den Berg
"Michael" <Mi*****@discussions.microsoft.com> schreef in bericht
news:B7**********************************@microsof t.com...
> Hi Michel,
> I pasted the code right below the " Windows Form Designer generated
> code"
> region, and the region was closed so it should not have overwriten any
> of
> that code. Right After pasting the code, the tabcontrol disapeared from
> the
> form without any error messages showing. After more investigation, I
> found
> 4
> of the 5 tabpages in the code (in the region above). Somehow the
> tabcontrol
> and 1 tabpage was totally removed from the form somehow. The form has
> no
> code
> except for a few other control loading (conbos & flexgrid) functions.
> Here
> is
> the code I pasted into the form.
> Private Sub SetHeaders()
> Dim i%
> ' initialize control
> flxFamilyHistory1.Styles.Normal.WordWrap = True
> flxFamilyHistory1.Cols.Count = 6
> flxFamilyHistory1.Rows.Fixed = 2
> flxFamilyHistory1.AllowMerging = AllowMergingEnum.FixedOnly
> ' create row headers
> flxFamilyHistory1.Rows(0).AllowMerging = True
> ' four cells, will merge
> Dim rng As CellRange = flxFamilyHistory1.GetCellRange(0, 1, 0,
> 2)
> rng.Data = "If Living"
> ' four cells, will merge
> rng = flxFamilyHistory1.GetCellRange(0, 3, 0, 4)
> rng.Data = "If Deceased"
> flxFamilyHistory1(1, 1) = "Age"
> flxFamilyHistory1(1, 2) = "Health"
> flxFamilyHistory1(1, 3) = "Age of Death"
> flxFamilyHistory1(1, 4) = "Cause of Death"
> flxFamilyHistory1(1, 5) = "Who"
> ' create column header
> flxFamilyHistory1.Cols(0).AllowMerging = True
> ' two cells, will merge
> rng = flxFamilyHistory1.GetCellRange(0, 0, 1, 0)
> rng.Data = "Person"
> ' align and autozise the cells
> flxFamilyHistory1.Styles.Fixed.TextAlign =
> TextAlignEnum.CenterCenter
> flxFamilyHistory1.AutoSizeCols(1, flxFamilyHistory1.Cols.Count -
> 2,
> 10)
> flxFamilyHistory1.Cols(5).Width = 150
> End Sub
>
> Private Sub SetFixedColumn()
> flxFamilyHistory1(2, 0) = "Father"
> flxFamilyHistory1(3, 0) = "Mother"
> flxFamilyHistory1(4, 0) = "Brothers"
> flxFamilyHistory1(9, 0) = "Sisters"
> End Sub
> The form will not load right now because the VB generated code still
> has
> references to controls that where removed/lost saying that the control
> is
> not
> a member of the form. Yet it still has the code like:
> Me.Label4 = New System.Windows.Forms.Label
> further down in the code:
> Me.TabPage1.Controls.Add(Me.Label4)
> further down in the code:
> Me.Label4.Location = New System.Drawing.Point(16, 339)
> Me.Label4.Name = "Label4"
> Me.Label4.Size = New System.Drawing.Size(176, 16)
> Me.Label4.TabIndex = 5
> Me.Label4.Text = "Have you ever had a transfusion?"
> Does any of this make since to anyone. Thanks for the reply and
> suggestions.
> Michael
>
>


Nov 23 '05 #11

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
by: winshent | last post by:
I have copied approx 20 controls from a form to a tab control for reasons of space. i now cannot run code triggered by the events of these controls. for example, the following will not trigger...
8
by: Invalidlastname | last post by:
Hi, We are developing an asp.net application, and we dynamically created certain literal controls to represent some read-only text for certain editable controls. However, recently we found an issue...
13
by: Chris Thunell | last post by:
I have created several grids dynamically and have added them to different HTML placeholders on a vb.net web form. The grids and controls within them come up and view beautifully when the web page...
2
by: Henry | last post by:
Hi, I have to create a variable amount of controls with events for a windows form in my vb code. Private WithEvents T_Label As Label Private WithEvents T_ButtonDo As Button I create the...
7
by: Dragon | last post by:
Hi, I am trying to create a form and add some controls to it programmatically. I am pasting the code I have so far, below. here are the issues I am having. #1. I am having to subtract...
2
by: Rob R. Ainscough | last post by:
I selected 3 controls that were in a Frame control, I "Cut" the controls and then pasted them outside the frame on the form. Now, when I double on the control (hoping to load the default event for...
5
by: richard.tallent | last post by:
I'm fond of web controls in ASP.NET, but the need for <@ Register%> blocks at the top of each page is a pain. ASP.NET 2.0 has a way to centrally register controls in the web.config file, but it...
0
by: Michael | last post by:
Hi I wanted to see if this is normal, and if so, how the heck do I correct it. Take the code below: if uInfo.RoleName = "ADMIN" then me.UsersList1.Visible = True...
2
by: mark.bergman | last post by:
I am porting some old code from Digital Unix to Linux using token pasting, which is failing to compile (code simplified): #define DEBUG(strg,v) printf("debugoutput: "##strg##".\n", v); main()...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.