An ArgumentException is a specific exception in the .NET framework thrown when one of the arguments provided to a method is not valid.
0
votes
1answer
15 views
WPF - StylusLogic - Index was out of range
I've an WPF Application which is used by several people and sometimes I get an email with this error, but I am not able to reproduce it. Anyone got an idea what to to do get this error?
at ...
0
votes
0answers
126 views
foreach loop System.ArgumentException: Value does not fall within the expected range
I'm experiencing a {System.ArgumentException: Value does not fall within the expected range.} exception from time to time and I'm trying to track down the issue. The exception is thrown at the first ...
-1
votes
0answers
21 views
New System.Drawing.Bitmap(a,b) parameter is not valid
When I compiled the following code the 1st time, it was working. Now I get the message:
Exception Details: System.ArgumentException: Parameter is not valid.
My code:
int width = 0;
int height = ...
1
vote
2answers
15 views
Argument Execption
Exception:
The specified named connection is either not found in the configuration, not intended to be used with the EntityClient provider, or not valid.
Method where exception happened:
/// ...
1
vote
2answers
41 views
InvalidOperationException vs. ArgumentException [closed]
I know the summaries and descriptions.
But what if the ARGUMENT is in an INVALID STATE?
I think the ArgumentException is more appropriate because the InvalidOperationException documentation says ...
0
votes
2answers
60 views
How to pass runtime argument variable in Expression.Call? [duplicate]
I'm missing something trivial here. Say I have a method like this:
abstract class C
{
public static void M(Type t, params int[] i)
{
}
}
I'm learning expression trees and I need to ...
2
votes
0answers
64 views
Strange behaviour of the ImageList that throws ArgumentException
I'm so confused when I'm using ImageList in .NET. First of all I have a global object (ImageManager) that contains three different ImageLists:
smallImages (size: 16x16) - contains 50 images (added ...
0
votes
0answers
37 views
Recursive DataTemplate is throwing Value Out Of Range
I'm using a "recursive data template" to try to display a binary tree.
I can't get a stack-trace or any other useful information except the message:
System.ArgumentException: Value does not fall ...
0
votes
0answers
176 views
Windows Forms “System.ArgumentException: Parameter is not valid” from Font.GetHeight(Graphics graphics)
I'm supporting a winforms application using dotnet 3.5 and ComponentFactory Krypton v4.4.0.0, I recently implemented the AppDomain.CurrentDomain.UnhandledException and Application.ThreadException ...
0
votes
1answer
38 views
ArgumentException was unhandled - Empty path name is not legal
I'm a beginner, trying to similarly replicate Microsoft's Notepad, but I'm getting this message. At the moment I'm trying to code the 'New' Item in the ToolStripMenu. Brief summary: So far if the user ...
0
votes
0answers
25 views
Team Explorer exception while constructing the content of the frame
Whenever I open my visual studio 2010, I get an exception in my team explorer along with a popup saying this:
And the exception I get (in my team explorer frame) is as following:
(If anyone ...
0
votes
0answers
182 views
Trouble writing writeable bitmap into png C#
public class Filing
{
public void SaveFile(WriteableBitmap image)
{
byte[] data = new byte[image.BackBufferStride * image.PixelHeight];
image.CopyPixels(data, ...
0
votes
0answers
123 views
ArgumentException when trying to get Sharepoint listItem data by FieldName (Internal, Display)
Currently I'm trying to get some data from Sharepoint (2010) list in my current visual web part (Visual Studio 2012).
if (listItem[keyName] != null) {
return listItem[keyName].ToString();
}
...
0
votes
1answer
304 views
Argument Exception - The path is not of a legal form (vb.net)
I'm currently having the most irritating error in a program i'm making and i would seriously appreciate any help or advice that could help me fix it. The part of the program that i'm having a problem ...
0
votes
1answer
302 views
C# Enable/disable Windows 7 / Windows 7 Embedded Firewall
I am working on a project where it must be possible to enable/disable the integrated Windows Firewall of a Windows 7 Embedded system by programm.
using the code:
private static INetFwPolicy2 ...
3
votes
0answers
30 views
ArgumentException was thrown on ByteTagVisualization
I'm new to posting on stackoverflow and new to coding for the Microsoft Surface in C# - however I have inherited someone else's code to adapt.
I'm getting the following error when trying to set the ...
2
votes
1answer
100 views
Why does XName.Get throw an ArgumentException instead of an XmlException for names starting with '{'?
I've been doing some testing of XML in .NET, and discovered that a lot of valid name characters are not allowed. In almost all cases, I get an XmlException on seemingly valid characters.
The ...
1
vote
1answer
113 views
Random System.ArgumentException after a certain time while taking screenshots
My application runs fine for about 5 minutes, then it will throw some random System.ArgumentException as seen in the screenshot below:
The big problem here is that both arguments actually seem to be ...
1
vote
1answer
83 views
If Validation methods should return a validation result, why there is ArgumentException class?
I am a bit confused.
What MSDN says for ArgumentException is:
"The exception that is thrown when one of the arguments provided to a
method is not valid."
So I would throw an exception if the ...
0
votes
1answer
83 views
ArgumentException while disposing custom bitmap plotter
I'm facing problems with a custom written plotter class.
This class is for drawing on a given PictureBox's Image.
Basic usage is something like this:
double[] signal = ...
0
votes
1answer
964 views
ArgumentException occurs randomly
Sometimes when my application tries to start, the ArgumentException "The parameter is incorrect" is thrown. Unfortunately the exception occurs randomly, so it is hard to fix it.
InnerException and ...
0
votes
1answer
170 views
create too big BMP file in Ram produce argument exception
My code:
Dim bmp_ As New Bitmap(width, height)
' here is for-loop to fill up bitmap ( bmp_.SetPixel(x, y, Color.White) )
bmp_.Save("D:\test.bmp", ImageFormat.Bmp)
That is working correctly ...
1
vote
4answers
796 views
ArgumentException: 'Illegal characters in path' in C#
The error I am receiving upon executing my code is: 'ArgumentException was unhandled. Illegal characters in path.'
I am using the following code to access my .xml file.
string appPath = ...
1
vote
1answer
219 views
C# - Dictionary<int, Dictionary<int, string>> sorting is throwing System.ArgumentException
I have an unsorted Dictionary<int, Dictionary<int, string>> and when trying to sort its value's Keys its throwing System.ArgumentException: At least one object must implement IComparable. ...
2
votes
1answer
94 views
Code with DrawImage works locally but fails in Azure with an ArgumentException
i have the following code extracted from my source which is relevant for this:
using (Bitmap spriteBitmap = new Bitmap(Width, Height, PixelFormat.Format32bppArgb))
{
using (Graphics ...
1
vote
0answers
76 views
Argument Exception with Label Biding in Listbox
I have the following problem. I created a Dialog where you are supposed to add entries into a ListBox. Each ListBoxItem consits of a TextBox for the Product Name and the Product Price (theses are ...
0
votes
0answers
203 views
GhostDriver & Selenium.NET issue
I am trying to use GhostDriver - compiled the ghostdriver-dev branch for phantomjs on OS X, and ran it as described on the ghostdriver wiki. Then i am connecting from the selenium tests by ...
4
votes
3answers
87 views
Expressions… What am I doing wrong?
I've decided to take some golden time to learn a bit more about Expressions. I'm trying a very simple exercise, namely adding two numbers. I've hit an exception that's proving to be tricky to search ...
0
votes
0answers
235 views
this.invoke() throws an uncatchable System.ArgumentException
i'm wrting a C# app on VS 2008, on a Win XP machine.
i have a simple function that looks like this (i can't copy-paste the specific code):
public void MyFunc(string name, int x, int, y)
{
...
2
votes
2answers
224 views
an Interesting Exception While get an Image from Internet
I am developing a program in WPF, getting a picture from the web and used an image control.
My image list has 50 pictures (from vimeo's thumbnails). Everything looks fine but number 45. The picture ...
0
votes
1answer
120 views
ArgumentException Message displayed in a Label
public void DeleteUser(User user)
{
if (!UserExists(user))
throw new ArgumentException("User doesn't exist!");
else
{
...
0
votes
1answer
832 views
C# SerialPort#Open() method throws ArgumentException because of port name?
On my local machine,
Windows XP
Ports (COM & LPT)
COM3
RIM Virtual Serial Port v2 (COM4)
RIM Virtual Serial Port v2 (COM5)
the following code,
using System;
using ...
0
votes
0answers
152 views
Exchange Web Services - ArgumentException using my own Contact-Class
I'm using the Exchange Web Services Managed API (EWS) 1.2.1 to connect to an Exchange Server 2007 in order to work with contacts.
The connection itself and the creation of contacts using the following ...
2
votes
3answers
316 views
Errors with Foreach Loop through a List
I have the following piece of code that is giving me problems and I would appreciate any help:
private static string CreateOptionString(List<VehicleOption> Options)
{
StringBuilder ...
0
votes
0answers
116 views
How can I use a resource .txt file with IO.StreamReader?
So, this is the case: I have a wordlist.txt file in my resources and this line of code won't work:
Dim reader As New IO.StreamReader(My.Resources.wordlist)
It gives me an ArgumentException, due to ...
0
votes
1answer
157 views
How do I acces the width and height of an Bitmap in C# XNA?
I am trying to create a application where I create a Bitmap, and then take some variables out of it and make a Texture2D from it. This is what I've got:
public Bitmap getBitmap()
{
...
0
votes
1answer
320 views
FileStream Exception
byte[] bFileName = new byte[512];
r2Socket.Receive(bFileName);
String FileName = Encoding.UTF8.GetString(bFileName);
System.Windows.Forms.MessageBox.Show(FileName); // It's Ok. Show FileName = ...
1
vote
1answer
372 views
System.ArgumentException: [net_WebHeaderInvalidControlChars] in Windoows Phone
I am using HttpWebRequest to fetch some twitter-API-like Json resource, the scenario is that after logining the app with XAuth-Authentication, the app will use an ...
3
votes
1answer
428 views
What might cause an ArgumentException when updating a PictureBox?
Having decided to try AForge for video and imaging stuff, I tried to implement this simple demo:
private void Main_Load(object sender, EventArgs e)
{
// enumerate video devices
...
0
votes
2answers
523 views
SaveFileDialog exception in my WPF app
One of my customers is experiencing a crash in my WPF application when saving a file.
My save file code is:
var saveFileDialog = new SaveFileDialog {
InitialDirectory = ...
1
vote
1answer
490 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, ...
2
votes
3answers
2k 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
1k 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 ...
0
votes
1answer
449 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
1k 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 ...
1
vote
1answer
821 views
System.ArgumentException when trying to use DataGridViewComboBox and ValueMember
ModelLinkControl modelLinkControl = new ModelLinkControl();
modelLinkControl.bindingSourceCModels.DataSource = cModels;
modelLinkControl.bindingSourceAModels.DataSource = aModels;
...
0
votes
1answer
83 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 ...
1
vote
2answers
233 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 ...
0
votes
1answer
134 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
376 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 ...
