473,698 Members | 2,370 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

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
10 1380
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*****@discus sions.microsoft .com> schreef in bericht
news:1F******** *************** ***********@mic rosoft.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*****@discus sions.microsoft .com> schreef in bericht
news:B7******** *************** ***********@mic rosoft.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
> flxFamilyHistor y1.Styles.Norma l.WordWrap = True
> flxFamilyHistor y1.Cols.Count = 6
> flxFamilyHistor y1.Rows.Fixed = 2
> flxFamilyHistor y1.AllowMerging = AllowMergingEnu m.FixedOnly
> ' create row headers
> flxFamilyHistor y1.Rows(0).Allo wMerging = True
> ' four cells, will merge
> Dim rng As CellRange = flxFamilyHistor y1.GetCellRange (0, 1, 0,
> 2)
> rng.Data = "If Living"
> ' four cells, will merge
> rng = flxFamilyHistor y1.GetCellRange (0, 3, 0, 4)
> rng.Data = "If Deceased"
> flxFamilyHistor y1(1, 1) = "Age"
> flxFamilyHistor y1(1, 2) = "Health"
> flxFamilyHistor y1(1, 3) = "Age of Death"
> flxFamilyHistor y1(1, 4) = "Cause of Death"
> flxFamilyHistor y1(1, 5) = "Who"
> ' create column header
> flxFamilyHistor y1.Cols(0).Allo wMerging = True
> ' two cells, will merge
> rng = flxFamilyHistor y1.GetCellRange (0, 0, 1, 0)
> rng.Data = "Person"
> ' align and autozise the cells
> flxFamilyHistor y1.Styles.Fixed .TextAlign =
> TextAlignEnum.C enterCenter
> flxFamilyHistor y1.AutoSizeCols (1, flxFamilyHistor y1.Cols.Count -
> 2,
> 10)
> flxFamilyHistor y1.Cols(5).Widt h = 150
> End Sub
>
> Private Sub SetFixedColumn( )
> flxFamilyHistor y1(2, 0) = "Father"
> flxFamilyHistor y1(3, 0) = "Mother"
> flxFamilyHistor y1(4, 0) = "Brothers"
> flxFamilyHistor y1(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.Con trols.Add(Me.La bel4)
> further down in the code:
> Me.Label4.Locat ion = New System.Drawing. Point(16, 339)
> Me.Label4.Name = "Label4"
> Me.Label4.Size = New System.Drawing. Size(176, 16)
> Me.Label4.TabIn dex = 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
3790
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 the message box when changed: Private Sub cboA_Change() MsgBox "combo A changed"
8
4276
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 which is related to the repeater. In the code shown below, if I call Repeater1.Controls.Count in the OnInit (the code fragment was highlighted in yellow) , the viewstate for the repeater will be lost during the postback. You can re-produce this...
13
3669
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 first starts, but when I click on a button, and the page comes back, my dynamically created grid and controls are not visible. Any thoughts? Please view my sample code below. If Not ispostback then creategrids end if
2
11493
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 controls in a loop in load event of the form:
7
1565
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 additional 35 points from the closeAbuotButton.Top ot the control goes out of form's bounds. I have no clue why. #2. I do not know how to access my Close Button's click event. It is asking me to create "WithEvents" but I can't figure our where/how to use...
2
1038
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 that control WITH my source code in the event) I get a new event with the "_1" appended to the event sub. Two work arounds: 1. copy all my event code into the new "_1" equivalent events handlers 2. or create the event handler _1 rename it...
5
1844
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 is poorly documented and appears to be broken. I have added my standard user controls to my web.config file. The MSDN examples are flat wrong, by the way (bad XML case and attribute names, won't compile). The proper syntax for registering server...
0
834
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 me.POSearch1.LoadSearchOptions(True) else me.UsersList1.Visible = False me.POSearch1.LoadSearchOptions(False ) End If
2
5732
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() { int x = 5; DEBUG("variable x is %d",x); }
0
8674
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, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9157
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, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
9026
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 tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
8893
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 Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
7723
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
5860
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4366
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
1
3045
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
3
2001
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.