Tagged Questions
The argumentexception tag has no wiki summary.
39
votes
30answers
85k views
Invalid postback or callback argument. Event validation is enabled using '<pages enableEventValidation=“true”/>'
I am getting the following error when I post back a page from the client-side. I have JavaScript code that modifies an asp:ListBox on the client side.
How do we fix this?
Error details below:
...
3
votes
3answers
127 views
Should CodeContracts replace the regular ArgumentExceptions?
Could I start using CodeContracts instead of:
if (XXX == Y)
throw new ArgumentException("bla bla");
How does it work if I develop a library and my library users do not use CodeContracts?
3
votes
3answers
890 views
StrongNameKeyPair problem when attempting to use MoQ
I'm trying to create a mock HttpContextBase for unit test.
var fakePrinciple = new GenericPrincipal(
new GenericIdentity(userId),
rolesList.ToArray());
var ...
3
votes
2answers
242 views
Why does FormatException not inherit from ArgumentException?
Is there a known reason why FormatException does not inherit from ArgumentException? An invalid format would seem to be a very specific case of an argument being invalid, similar to ...
2
votes
3answers
147 views
System.ArgumentException and System.ComponentModel.Win32Exception when getting process information
When i try to write process' information to console i get System.ArgumentException and System.ComponentModel.Win32Exception. What causes this? How can i stop having those?
Process ...
2
votes
1answer
83 views
C# - How do I find why an ArgumentException is occurring?
An unhandled exception of type 'System.ArgumentException' occurred in System.Drawing.dll
Additional information: Parameter is not valid.
This is happening at the end of this code.
public ...
2
votes
3answers
1k views
RegEx — Quantifier {x,y} following nothing error
I am very new to RegEx -- so can someone please help me figure out what exactly is going wrong here?
I have this code:
string regPattern = "*[~#%&*{}/<>?|\"-]+*";
string ...
1
vote
1answer
26 views
Why is ProgressBar.SetValue throwing ArgumentException with valid values?
I am using WPF's ProgressBar object, which has a Value property, and I can pass it a constant int or decimal value and it doesn't complain, but if I pass it a float (or int or string) variable value, ...
1
vote
1answer
239 views
System.ArgumentException when trying to use DataGridViewComboBox and ValueMember
ModelLinkControl modelLinkControl = new ModelLinkControl();
modelLinkControl.bindingSourceCModels.DataSource = cModels;
modelLinkControl.bindingSourceAModels.DataSource = aModels;
...
1
vote
2answers
75 views
How do i bind function arguments to the parameters i supply in creating an ArgumentException object?
I often have functions that take arguments like this:
Public Shared Function F(ByVal address as String)
So basically I want to throw new ArgumentException("Invalid address!", "address")
Now problem ...
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
3answers
307 views
Argument Exception in the main method (winforms)
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new SpaceInvaders());// i get an error ...
1
vote
1answer
48 views
System.ArgumentException on Infragistics TabManager
W.G.H
i got the folowing error after adding new tab in infragistics's tab manager
"System.ArgumentException: Parameter is not valid"
this error shows on designer, so I can't debug it..
it does no ...
1
vote
2answers
296 views
Why is HttpNotificationChannel.Open throwing ArgumentException() E_INVALIDARG?
Here is my code. Everything works fine the first time I run it, i.e. HttpNotificationChannel.Find() returns null.
But the second time I run it, Find() returns the proper thing, however when I get to ...
1
vote
4answers
717 views
C# - Regexp - ArgumentException
i want to match coordinates from a Browsergame.
My Regex is:
try
{
Regex r = new Regex("Mond ([1-9]) \x5B([1-9]):([1-9][0-9]{0,2}):([1-9][0-9]{0,2})\x5D");
...
0
votes
0answers
93 views
Why does worksheet.UsedRange.Value throw an ArgumentException?
I'm working with Silverlight 5 RC and C# 4.0. The following code throws an Argument Exception.
dynamic[,] table = (dynamic[,]) worksheet.UsedRange.Value;
The Exception details are
...
0
votes
1answer
122 views
Exception message not being displayed correctly on client computers
The project I'm currently working on is a form designer (Silverlight Application) wherein the user can drag a control from the toolbox to the work canvas and then supply its properties in the property ...
0
votes
1answer
127 views
Argument Exception (Path is not of a legal form)
Background Infomation: I am using FileSystemWatcher class implemented in a service to monitor changes in the files. Heres the section of coding that throws an Argument Exception (Path is not a legal ...
0
votes
1answer
44 views
Another “specified named connection” Argument Exception error
I've read several responses to this that I need to copy the app.config of my DAL project to my exe project. This is done so this is not the problem.
What is very strange about this is that my app ...
0
votes
1answer
62 views
FileIOPermission.GetPathList throws exception?
i'm using FileIOPermission, and it's throwing an error on me:
FileIOPermission fileIOPerm = new FileIOPermission(FileIOPermissionAccess.AllAccess, folderName);
...
0
votes
1answer
173 views
ArgumentException not caught when using BitmapImage.BeginInit()
Why when an ArgumentException occurs because image.jpg has an invalid metadata header does the first example catch the exception, and the second example does not?
Example 1:
try
{
Uri myUri = new ...
0
votes
1answer
812 views
Uploading a file from JavaScript by calling a web service
I have the following web service that allows me uploading files:
[WebService(Namespace = "http://tempuri.org/")]
[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
...
0
votes
0answers
340 views
NHibernate+Oracle(ODP.NET) => “System.ArgumentException : Value does not fall within the expected range”
I'm trying to port my SQL Server database into Oracle 11g. I keep getting the "Value does not fall within the expected range" exception from Oracle.Access.dll (ODP.NET 4).
NHibernate looks fine when ...
0
votes
2answers
642 views
Querying Sharepoint - Value does not fall within the expected range
I'm attempting to retrieve the value of a listitem but keep getting a ArgumentException - Value does not fall within the expected range.
My code is as follows:
if (resultList.Count > 0)
...
0
votes
4answers
721 views
Empty Path Name Is Not Legal
So I'm trying to compile an Asteroids game. It's almost working, all the files are in place etc etc...
The issue comes when it hits this code.
FileStream myFileStream = new FileStream(filename, ...
0
votes
3answers
560 views
ArgumentException was unhandled Application.run
Hi I've been through many sites and can't seem to find an answer.
I modified a view that was connected to a Datagridview connected through a tableadapter on a C# Winforms app and in order to ...
0
votes
5answers
3k views
SPList Item get value - ArgumentException
I have an SPListItem and I have an array of column names.
When I try to access the SPListItem values using the code below:
for(int i=0;i<arrColName.length;i++)
{
string tempValue = ...
0
votes
2answers
2k views
Argument exception - parameter is not valid ( LinkLabel on WinForm )
I wrote a Win Forms app to test how a LinkLabel class works. It appears to be fine until I click on the changed LinkLabel. The Form1.cs code is below:
using System;
using ...