Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

24
votes
10answers
19k views

ASP.NET MVC: No parameterless constructor defined for this object

Server Error in '/' Application. -------------------------------------------------------------------------------- No parameterless constructor defined for this object. Description: An unhandled ...
17
votes
5answers
14k views

nullable object must have a value

There is paradox in the exception description: Nullable object must have a value (?!) This is the problem: I have a DateTimeExtended class, that has { DateTime? MyDataTime; int? otherdata; } ...
13
votes
4answers
2k views

Unit test MSBuild Custom Task without “Task attempted to log before it was initialized” error

I have written a few MSBuild custom tasks that work well and are use in our CruiseControl.NET build process. I am modifying one, and wish to unit test it by calling the Task's Execute() method. ...
12
votes
7answers
2k views

Why cant we change Values of a dictionary while enumerating its keys?

class Program { static void Main(string[] args) { var dictionary = new Dictionary<string, int>() { {"1", 1}, {"2", 2}, {"3", 3} ...
10
votes
2answers
5k views

InvalidOperationException - object is currently in use elsewhere - red cross

I have a C# desktop application in which one thread that I create continously gets an image from a source(it's a digital camera actually) and puts it on a panel(panel.Image = img) in the GUI(which ...
8
votes
4answers
12k views

The query results cannot be enumerated more than once?

I'm using LINQ to SQL to get a search result of a FullTextSearch stored procedure in Sql server 2008. I dragged the procedure from the server explorer to the designer, and got the method created with ...
7
votes
1answer
2k views

what does this error mean?

I'm getting this error: Cannot use a DependencyObject that belongs to a different thread than its parent Freezable What does that even mean? Is it in English? Is the parent frozen, or is it just ...
5
votes
1answer
232 views

Periodic Exception in WSDL Export Extenstion

I have a SOAP service that's been running for a little over a month now. Over the past two weeks we've had situations where the service will randomly start to generate exceptions. Each time, they seem ...
5
votes
2answers
1k views

WPF DataGrid ComboBox causes InvalidOperationException

I am getting an InvalidOperationException('DeferRefresh' is not allowed during an AddNew or EditItem transaction.) from my datagrid when I try to edit the value of a combo box column. The items I am ...
5
votes
2answers
692 views

Is there a Java equivalent of C#'s InvalidOperationException?

I'm converting some C# code to Java and I need to include an exception that is similar to C#'s InvalidOperationException. Does such a thing exist? Also is there a list of equivalent exception types in ...
5
votes
3answers
905 views

Modifying Collection when using a foreach loop in c#

Basically, I would like to remove an item from a list whilst inside the foreach loop. I know that this is possible when using a for loop, but for other purposes, I would like to know if this is ...
4
votes
8answers
2k views

ASP.NET Web Method that accepts a List<CustomObject> is failing with “Web Service method name is not valid.”

I want to create a web method that accepts a List of custom objects (passed in via jQuery/JSON). When I run the website locally everything seems to work. jQuery and ASP.NET and everyone is happy. ...
3
votes
3answers
82 views

C# custom Iterator implementation - prevent collection modification during foreach loop

I created a custom collection that implements IEnumerable(T) and a custom IEnumerator(T). I also added an Add() method to the custom collection which looks like this: public void Add(T item) { ...
3
votes
1answer
1k views

Silverlight 4 Login InvalidOperationException “UserService operation already in progress”

We are getting this error InvalidOperationException "userservice operation already in progress" in our Silverlight 4 (OOB with RIA Services) when you click the Login button, but it doesnt happen ...
3
votes
2answers
463 views

SQLBulkCopy Throws InvalidOperationException Nullable Ints

I have a DataTable that I am attempting to upload, but I run into the following exception: "The given value of type String from the data source cannot be converted to type int of the specified target ...
3
votes
2answers
398 views

Is there an alternate hashing algorithm to MD5 for FIPS-enabled systems?

Whenever I try to use MD5 on a Windows XP machine that has FIPS enabled, I am getting a System.InvalidOperationException. Is there an alternate algorithm that I should use instead of MD5 on FIPS?
3
votes
3answers
619 views

VB.net ApplicationFramework plus SplashScreen: InvalidOperationException

I recently changed my app from using a custom SplashScreen (it was just a Form with a Timer loaded the main form and closed itself) to the Application Framework. Here is what I did: Created a new ...
3
votes
2answers
288 views

Generating and passing complex content to the GUI thread in WPF/C#

I'm aware, and use, the xxx.Dispatcher.Invoke() method to get the background thread to manipulate GUI elements. I think I'm bumping up against something similar, but slightly different, where I want a ...
3
votes
1answer
836 views

.NET xsd importer creates unserializable class

I am using the .NET XSD.EXE importer to generate C# classes from a collection of XSD files. When I tried to serialize one of the classes to XML it failed (InvalidOperationException), and when I dug ...
2
votes
1answer
61 views

C# GDI+ SetMapMode

I seem to be having some problems with implementing SetMapMode in C#. Not an expert in C# so Im not too surprised that im seeing errors. Even thought the compilation is fine DrawLine throws ...
2
votes
1answer
225 views

InvalidOperationException: Invalid attempt to read when no data is present. (SQL)

SqlConnection conn = new SqlConnection(AllQuestionsPresented.connectionString); SqlCommand cmd = new SqlCommand(sb.ToString(), conn); cmd.Parameters.Add("@ThreadsID", ...
2
votes
1answer
294 views

Adding nodes to TreeView causes Thread-Exception

i have a little problem. I´ve made a class that manages my prefabs (predefined objects for my level-editor). On loading the prefabs at start, it creates TreeNodes for categories and each prefab and ...
2
votes
1answer
177 views

Why does this error not get caught?

I have the following code in my project, deleteselector is a form that has a datagridview (with autosize columns) on it. try { if (deleteSelector.ShowDialog() == DialogResult.OK) { ...
2
votes
1answer
381 views

C# Find out what column caused the Sql Exception

I'm getting an exception from SQL Data Reader (MS SQL as datastore) and I'd like to know which column name causes this Exception to be thrown. But I cannot find it in the InnerException.. nowhere. ...
2
votes
2answers
790 views

Why is XmlSerializer throwing an InvalidOperationException?

public void Save() { XmlSerializer Serializer = new XmlSerializer(typeof(DatabaseInformation)); /* A first chance exception of type 'System.IO.FileNotFoundException' ...
2
votes
2answers
118 views

Enumerating a collection, then modifying it, what is the precedent for throwing an exception?

When enumerating a .NET collection, MSDN states that: An enumerator remains valid as long as the collection remains unchanged. If changes are made to the collection, such as adding, modifying, or ...
2
votes
3answers
451 views

InvalidOperationException on object from a thread that's done

In a WPF application I had a BackgroundWorker thread creating an object. Let's call the object foo. Background worker code: SomeClass foo = new SomeClass(); // Do some operation on foo // Set some ...
2
votes
1answer
804 views

How can I add logic to an existing dependency-property callback?

I'm trying to add a PropertyChangedCallback to UIElement.RenderTransformOriginProperty. An exception is thrown when I try to override the PropertyMetadata. I have searched MSDN and Google, and all ...
2
votes
1answer
2k views

Compiling a Delegate with Expression.Lambda() - Parameter Out Of Scope, but is it really?

I came across an interesting problem today whilst implementing a feature into a dynamic expression building library. More specifically, but irrelevantly, a feature to define operator precedence in an ...
2
votes
2answers
754 views

How do I fix EmbeddedRessources in a ASP.NET web site?

I am trying to reference a js file in a class in an ASP.NET and I receive this error: Assembly 'XXX' contains a Web resource with name 'XXX' but does not contain an embedded resource with name 'XXX' ...
1
vote
1answer
92 views

EF4 code first fluent mapping does not work with inherited properties?

Did anyone ever tried mapping an inherited property? Because I would be glad to hear that just works and that I am making a mistake somewhere, as I am getting the following error: "The property ...
1
vote
1answer
89 views

An entity object cannot be referenced by multiple instances of IEntityChangeTracker

I have a model called Message. In the model there is a ICollection ResourceSubscribers of another model called Resource. When I try to public void SaveMessage(List<int> subscribers) { ...
1
vote
1answer
139 views

“InvalidOperationException: Object is currently in use elsewhere” during innocuous onpaint?

For some reason we are getting "InvalidOperationException: Object is currently in use elsewhere." during our custom OnPaint, below (that's actually almost a line for line copy of the code... there's ...
1
vote
1answer
105 views

Silverlight InvalidOperationException when clicking a link

I have a dynamically generated hyperlink which when clicked should open a lotus notes document. I do it using the code below. HyperlinkButton hlb = new HyperlinkButton(); ...
1
vote
0answers
95 views

webmethod with optional C# arguments appear to be required when invoked as a RESTful URI - gives InvalidOperationException: Missing parameter

I have a webmethod which works and I've added some optional parameters (because I don't want to burden all callers with providing these values; they are primarily for my development needs since my ...
1
vote
5answers
271 views

Identify InvalidOperationException “Collection was modified; enumeration operation may not execute.”

I've got a good old InvalidOperationException being thrown with the standard message Collection was modified; enumeration operation may not execute. The problem is, the enumerator isn't ...
1
vote
1answer
135 views

Linq to CRM - Invalid operation exception

I'm using a LINQ to CRM from Advanced Developer Extension for MS CRM 4.0. It works fine with direct queries. But I've got a problem when query looks like this: var connectionString = @"User ID=u; ...
1
vote
2answers
536 views

C# System.InvalidOperationException: Collection was modified; enumeration operation may not execute

I have researched this issue and haven't found what pertains to me yet. I am not trying to edit something I am looping through. ************** Exception Text ************** ...
1
vote
3answers
327 views

Invoke or BeginInvoke cannot be called on a control until the window handle has been created

using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; using ...
1
vote
1answer
164 views

Passing an Xml from a Web Service

I have a web service which returns something of type MyData. public class MyData { public string Name; [XmlElement("item")] public Object[] DataItems; } I have used ...
1
vote
5answers
354 views

Queue ForEach loop throwing InvalidOperationException

I haven't used Queues<T> to any real degree before, so I might be missing something obvious. I'm trying to iterate through a Queue<EnemyUserControl> like this (every frame): foreach (var ...
1
vote
2answers
134 views

Trying to avoid exceptions when calling back to the UI thread

I have a type of control that holds a GridView and some utility buttons. The control is used everywhere in my application. It is populated asynchronously, through delegates: protected virtual ...
1
vote
0answers
402 views

c#: “System.InvalidOperationException: Queue empty” and other errors while using SendKey.SendWait()

I wrote a program to send 'Enter' key to a certain active window. I used a Timer to get the title of the active window for the moment and act accordingly. I made an error log file so i can keep track ...
1
vote
2answers
4k views

Windows Application has stopped working :: Problem Event Name CLR20r3

I developed an applicatin using Visual Studio.Net 2008 Team System with Infragistics Net Advantage Tools 2010.3 and made a Setup Exe file for my application and installed on client machines where ...
1
vote
1answer
170 views

C# WPF catch exception in subform called by winform

I have a WPF application that calls a winforms subform. The winform calls a WPF window using showDialog(). The WPF window contains borders that I am setting the background image of. My problem is ...
1
vote
2answers
332 views

Why would 'this.ContentTemplate.FindName' throw an InvalidOperationException on its own template?

Ok... this has me stumped. I've overridden OnContentTemplateChanged in my UserControl. I'm checking that the value passed in for newContentTemplate does in fact equal this.ContentTemplate (it does) ...
1
vote
4answers
75 views

Why am I getting an InvalidOperationException?

foreach (var shotItem in Invadershots)// it points to me to there and doesnt allow me to loop.."{"Collection was modified; enumeration operation may not execute."}" { shotItem.Move();// it happens ...
1
vote
0answers
475 views

Custom ChangeMonitor for .Net MemoryCache causes invalid operation exception

I have written my own custom change monitor class for the .Net MemoryCache. It seems to initialize fine, but when I attempt to add it to the Cache, it throws an InvalidOperation exception "The method ...
1
vote
1answer
416 views

Datagridview, binding source, and invalid operation error

foreach (Listing s in fx) { ListingBindingSource.Add(s); } This in my code causes the following error: Invalid operation error: Operation is not valid due ...
1
vote
1answer
235 views

HyperLink in DataGrid: InvalidOperationException

I'm trying to add RichTextBoxes into the cells of a DataGrid. The RichTextBox contains a Hyperlink, but when I click it, it throws the following exception: 'Invalid Operation Exception - ...

1 2 3