473,797 Members | 3,174 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Designer error "could not find type..."

I've got a project I've been working on for a few weeks. I've been using
the BindingSource control - I've got four of them on this particular form.

This morning I went to view the report in the designer and got:

Could not find type 'LandarcBL.Budg et'. Please make sure that the
assembly that contains this type is referenced. If this type is a part of
your development project, make sure that the project has been successfully
built.
Hide Edit

at
System.Componen tModel.Design.S erialization.Co deDomSerializer Base.Error(IDes ignerSerializat ionManager
manager, String exceptionText, String helpLink)
at
System.Componen tModel.Design.S erialization.Co deDomSerializer Base.Deserializ eExpression(IDe signerSerializa tionManager
manager, String name, CodeExpression expression)
at
System.Componen tModel.Design.S erialization.Co deDomSerializer Base.Deserializ eAssignStatemen t(IDesignerSeri alizationManage r
manager, CodeAssignState ment statement)
at
System.Componen tModel.Design.S erialization.Co deDomSerializer Base.Deserializ eStatement(IDes ignerSerializat ionManager
manager, CodeStatement statement)
When I click Edit it takes me to the MainForm.Design er.CS line:
this.budgetBind ingSource.DataS ource = typeof(LandarcB L.Budget);

When I hover the mouse over LandarcBL.Budge t is shows me the intellisense.
It's finding it just fine of course.

I can hit F5 and run the form just fine. I added another form, added a
BindingSource, set its DataSource to the same class and that form loads in
the designer just fine.

This morning I did a bunch of stuff - ran the form, closed VS, and I don't
know what else, and it started working again. Now none of that is having
any affect.

I've found many reports of this problem with google but no real solution to
my exact circumstances.

Anyone have any ideas?
Jan 6 '06 #1
11 6580
"Daniel Billingsley" <Da************ ***@newsgroup.n ospam> a écrit dans le
message de news: eP************* @TK2MSFTNGP15.p hx.gbl...

| I've got a project I've been working on for a few weeks. I've been using
| the BindingSource control - I've got four of them on this particular form.
|
| This morning I went to view the report in the designer and got:
|
| Could not find type 'LandarcBL.Budg et'. Please make sure that the
| assembly that contains this type is referenced. If this type is a part of
| your development project, make sure that the project has been successfully
| built.
| Hide Edit

I would like to know the answer to this as well.

Using VS2005

I have declared a type : Carter.Framewor k.Test.Customer List. I set the
DataSource property of a CustomerListBin dingSource to this value. Like you,
I just come back to the form a day or so later and get this error. Changing
the DataSource to just CustomerList seems to make it work - sometimes :-(

There seems to be no consistency to what causes this, but I would definitely
like to fix it.

Joanna

--
Joanna Carter [TeamB]
Consultant Software Engineer
Jan 6 '06 #2
Hello Daniel,

What is the version of the VS.NET you work with, 2003 or 2005? Normally,
such a problem can be resolved by rebuilding the whole solution.

Luke

Jan 9 '06 #3
It's VS2005 (C#). I've closed and re-opened VS several times, selected
Build/Clean Build/Rebuild Solution from the menu several times... all to no
avail.

"[MSFT]" <lu******@onlin e.microsoft.com > wrote in message
news:pv******** ******@TK2MSFTN GXA02.phx.gbl.. .
Hello Daniel,

What is the version of the VS.NET you work with, 2003 or 2005? Normally,
such a problem can be resolved by rebuilding the whole solution.

Luke

Jan 9 '06 #4
A have stumbled across a solution - for my case anyway.

I remove all the ".DataSourc e = " lines on the BindingSources in the
MainForm.Design er.cs code. That allowed the form to load.

Then when I went to reset the DataSource for the BindingSources in the
designer I kept getting an error "...not sent to an insance". I googled
that and found a suggestion that the project DataSources were messed up.

Sure enough, I removed a couple of DataSources that weren't really used and
everything is back to normal.

"Daniel Billingsley" <Da************ ***@newsgroup.n ospam> wrote in message
news:%2******** **********@TK2M SFTNGP15.phx.gb l...
It's VS2005 (C#). I've closed and re-opened VS several times, selected
Build/Clean Build/Rebuild Solution from the menu several times... all to
no avail.

"[MSFT]" <lu******@onlin e.microsoft.com > wrote in message
news:pv******** ******@TK2MSFTN GXA02.phx.gbl.. .
Hello Daniel,

What is the version of the VS.NET you work with, 2003 or 2005? Normally,
such a problem can be resolved by rebuilding the whole solution.

Luke


Jan 9 '06 #5
Hello,

Glad to hear that the problem has been removed. From the description, it
seems the source code of the project has been corrupted somewhere. And
re-creating some components fixed the issue.

Luke

Jan 10 '06 #6
"Luke Zhang [MSFT]" <lu******@onlin e.microsoft.com > a écrit dans le message
de news: D1************* *@TK2MSFTNGXA02 .phx.gbl...

| Glad to hear that the problem has been removed. From the description, it
| seems the source code of the project has been corrupted somewhere. And
| re-creating some components fixed the issue.

Hi Luke

Actually, all that this procedure of removing, correcting and replacing the
references only removes the problem for that session. Next time, or maybe a
couple of times later, the problem comes back just the same.

Unfortunately, this does not yet appear to be reliably reproducible.

Joanna

--
Joanna Carter [TeamB]
Consultant Software Engineer
Jan 10 '06 #7
I had this problem (or one very similar) back in December; my workaround
(not fix) was to cut the data-binding code from the designer code into my
own method that is called in the ctor outside of InitializeCompo nent().

The downside is that I can't amend my bindings in the IDE, but generally
once I have set them up I'm doing much of this anyway... and when I do need
to change them I can do it in source-code easily enough. Plus it gives me
more flexibility to use converters etc.

Marc

"Joanna Carter [TeamB]" <jo****@not.for .spam> wrote in message
news:%2******** ********@TK2MSF TNGP15.phx.gbl. ..
"Luke Zhang [MSFT]" <lu******@onlin e.microsoft.com > a écrit dans le
message
de news: D1************* *@TK2MSFTNGXA02 .phx.gbl...

| Glad to hear that the problem has been removed. From the description, it
| seems the source code of the project has been corrupted somewhere. And
| re-creating some components fixed the issue.

Hi Luke

Actually, all that this procedure of removing, correcting and replacing
the
references only removes the problem for that session. Next time, or maybe
a
couple of times later, the problem comes back just the same.

Unfortunately, this does not yet appear to be reliably reproducible.

Joanna

--
Joanna Carter [TeamB]
Consultant Software Engineer

Jan 10 '06 #8
"Marc Gravell" <mg******@rm.co m> a écrit dans le message de news:
uI************* *@TK2MSFTNGP15. phx.gbl...

|I had this problem (or one very similar) back in December; my workaround
| (not fix) was to cut the data-binding code from the designer code into my
| own method that is called in the ctor outside of InitializeCompo nent().
|
| The downside is that I can't amend my bindings in the IDE, but generally
| once I have set them up I'm doing much of this anyway... and when I do
need
| to change them I can do it in source-code easily enough. Plus it gives me
| more flexibility to use converters etc.

I suppose the only real downside to this is not being able to layout the
columns in a grid by using the designer provided columns. Presumably this
works with database driven datasources ? If so, then it really ought to work
with objects as well; if not, then it is obviously a pretty major bug that
really should be fixed.

Joanna

--
Joanna Carter [TeamB]
Consultant Software Engineer
Jan 10 '06 #9
Not to mention the bug where the IDE gets confused and thinks there are
multiple "column1" (etc) definitions and then refuses to load...

I've only really used this approach with objects. Generally I find that if I
lay the bindings out *once* in the IDE (and then cut the bindings code etc),
I actually find it *easier*, not harder, to use. I can live without seeing
the bindings at design time (re your grid point, most of the time when I am
using columns, the exact columns and sequence is dynamic anyway, so the
designer isn't much use), and I find that not having all those extra
variables around makes life much easier.

And yes I know you can turn off the variable declaration in 2005 (for some
elements), but they still annoy me. Another benefit of the approach of
cutting the binding code is that I can essentially write a void
SetupBindings(B indingSource source) method, and bind via that from the
calling code; this means I can then share a BindingSource at runtime, which
allows me to do some very neat things:
* Multiple non-modal forms all using the same cursor position without any
extra code
* Complex forms where each tab has been written as a control; each control
can (again) use the same BindingSource

It means I have a lot less code to mess with when I change the current
object being displayed.

Now... back to reading your OPF stuff... <g>

Marc

"Joanna Carter [TeamB]" <jo****@not.for .spam> wrote in message
news:er******** *****@TK2MSFTNG P12.phx.gbl...
"Marc Gravell" <mg******@rm.co m> a écrit dans le message de news:
uI************* *@TK2MSFTNGP15. phx.gbl...

|I had this problem (or one very similar) back in December; my workaround
| (not fix) was to cut the data-binding code from the designer code into
my
| own method that is called in the ctor outside of InitializeCompo nent().
|
| The downside is that I can't amend my bindings in the IDE, but generally
| once I have set them up I'm doing much of this anyway... and when I do
need
| to change them I can do it in source-code easily enough. Plus it gives
me
| more flexibility to use converters etc.

I suppose the only real downside to this is not being able to layout the
columns in a grid by using the designer provided columns. Presumably this
works with database driven datasources ? If so, then it really ought to
work
with objects as well; if not, then it is obviously a pretty major bug that
really should be fixed.

Joanna

--
Joanna Carter [TeamB]
Consultant Software Engineer

Jan 10 '06 #10

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

Similar topics

3
3968
by: Brian Fulford | last post by:
I am trying to deploy a web app with a deployment project since I am including Crystal Reports for .Net. I attached all the merge modules, etc but I am getting a build error when I try to build the setup project. Could not find file 'C;\Web\ccsm\ccsm_search.aspx' 'Interface not registered' Thie file is included in the project, so I am not sure what is going on!!
3
7593
by: stash | last post by:
Help - Please! I am trying to run the V8 db2setup script *again* (maybe for the third or fourth time) and it will not re-create the sqllib directory. It always stops with this error: ERROR:Could not switch current DB2INSTANCE to "db2inst1". The return code is "-2029059916". Then it follows with : ERROR:DBI1122E Instance db2inst1 cannot be updated. In between attempts we have uninstalled all DB2 products (using SMIT) - we have killed...
0
2073
by: Daniel Wilson | last post by:
I have a small Windows Form app in Visual C++ .NET 2003. I opened it up today and got the following message on the tab for my form. An error occured while loading the document. Fix the error, and then try laoding the document again. The error message follos: The designer could not be shown for this file because none of the classes within it can be designed. I don't have any custom code in InitializeComponent. I have commented out...
0
1878
by: Johann Blake | last post by:
I installed "Visual Studio.NET 2003 Special Upgrade for Version 2002 customers". At the time of this posting, this is the latest version available. When I go to create a Smart Device application using C#, the IDE shows the designer window with the error message: "The designer could not be shown for this file because none of the classes within it can be designed."
8
8994
by: eminemence | last post by:
Hi, I have been trying to get STLPort work for Symbian. I am using CodeWarrior compiler and it spews this errors namely ************************************************************************* Error : type specifier omitted for parameter string.h line 30 ************************************************************************ The following is the line where I get this error: Line 30 : # if (_STLP_OUTERMOST_HEADER_ID == 0x269) Line 31...
1
7945
by: amindi | last post by:
Hi, I wrote a VB6 program to read some data records from a Ms Access database and to write them into a SQL server database.(I use Ms Access 2000 and SQL server 2000).After reading each record in Access database, I update a text type datafield of that record in Access database to 'Y' (to mark the perticular record as a copied record)(The program does the updation). I tested the program several times by using a seperate copy of the same database...
0
2638
by: Jon Paal | last post by:
error : "Could not find stored procedure 'dbo.aspnet_CheckSchemaVersion'." using VWD 2005 with sqlexpress 2005 I am trying to create membership roles and users......
3
8495
by: Nitinkcv | last post by:
Hi, While trying to run my app im getting the error Could not find a part of the path "c:\inetpub\wwwroot\Do not Delete\dbglobal.config". I checked and found that there is no Important_Do not Delete folder inside the wwwroot. The error occurs when i try to use the following code: //inside my test.aspx
1
1686
by: ipramod | last post by:
Hi, I have a codebase which contains project for all the DLL's and another project for all UI presentations. When I try to open an aspx page on Visual Studio editor, I get following error on the very first line of the aspx page: ASPX Code: ++++++++++++++++++++++++++++++++++++++++++++++
2
5902
by: Sejoro | last post by:
Hello, I am trying to write a program that opens a file; reads through it; outputs the text; then outputs the number of lines, words, and characters. Problem is, every time I try to compile, no matter what modifications I make, I get an error, "line 42: Error: Could not find a match for std::basic_istream<char, std::char_traits<char>>::get(int)." I have tried everything I can think of. Help? #include <iostream> #include <fstream>
0
9536
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 effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10468
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...
1
10205
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
6802
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
5458
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...
0
5582
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4131
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
2
3748
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2933
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.