Tagged Questions
The formatexception tag has no wiki summary.
3
votes
2answers
492 views
SqlBulkCopy throws System.FormatException when running WriteToServer(DataTable)
Currently I'm writing a method to read data from a CSV file and import to a SQL table.
DataTable dt = new DataTable();
String line = null;
int i = 0;
while ((line = ...
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 ...
3
votes
3answers
4k views
Proper DateTime Format for a Web Service
I have a webservice with a method which is called via a xmlhttprequest object in my javascript. The method accepts a datetime parameter which is subsequently converted to a string and run against the ...
2
votes
6answers
264 views
The best overloaded method match for 'int.Parse(string)' has some invalid arguments
Console.WriteLine("Enter the page that you would like to set the bookmark on: ");
SetBookmarkPage(int.Parse(Console.ReadLine));
It's the int.Parse(string) part that gives me the error ...
2
votes
1answer
172 views
System.FormatException: Input string was not in a correct format
private void ReadUnitPrice()
{
Console.Write("Enter the unit gross price: ");
unitPrice = double.Parse(Console.ReadLine());
}
This should work, but I'm missing something ...
1
vote
3answers
94 views
What is the .NET equivalent of Java's NumberFormatException?
Is FormatException in .NET the equivalent of NumberFormatException in Java ?
1
vote
3answers
330 views
Input string was not in a correct format
I'm new with c#, I have some basic knowledge in java but I can't get this code to run properly.
It's just a basic calculator, but when I run the program VS2008 gives me this error:
...
1
vote
1answer
124 views
Gridview with bound parameter DateTime from Textbox throws DateTimeException when sorting
I'm having issues with an ASP.NET GridView.
The GridView is set up to retrieve rows from a stored procedure via a SqlDataSource. The Gridview has a BoundField which fills in a DateTime parameter for ...
1
vote
6answers
460 views
Why does System.Convert(“0”) throw a FormatException on some systems?
The code is compiled in VS2008 targeting .NET3.5. This is not reproducible on my system. I suspect some sort of localization setting is at play but I don't know much about that.
All other valid ...
1
vote
2answers
549 views
WPF FontFamily Format question
I'm trying to set the selected value of my Font Family combobox, which has been populated with the following XAML:
<ComboBox ItemsSource="{x:Static Fonts.SystemFontFamilies}" Name="cboFont">
...
1
vote
1answer
2k views
Fixing FormatException in datagrid view with a checkbox column
I've got a datagrid control bound to BindingList of objects. One of the Properties of the object class is boolean. I have customized that column in the datagridview to be a checkbox type.
Things ...
0
votes
3answers
27 views
DateTime.ParseExact FormatException
Why does the following code generate a FormatException?
DateTime.ParseExact("03/01/2012", "dd/MM/yyyy", null);
Perhaps it has something to do with the fact that the code is running under IIS 7.5 ...
0
votes
0answers
31 views
Firefox error - Input string was not in a correct format
While making an ASP.NET application cross-browser compatible I came across this error only in Firefox.
When the Cancel Button in the ShowModalDialog box is clicked, firefox returns the following ...
0
votes
0answers
21 views
Invalid length for a Base-64 char array - System.Web.UI.ViewStateException: Invalid viewstate
This error has been in our logs from time to time and various users experience it:
System.FormatException: Invalid length for a Base-64 char array.
System.Web.HttpException: The client ...
0
votes
1answer
15 views
Get Source of XmlSerializer FormatException?
i'm deserializing some XML Data i get from a WebService using the XmlSerialzier. This worked quite good until now, but since some days i get an FormatException while the Serializer parses the XML.
Is ...
0
votes
1answer
114 views
Assert.AreEqual(…) gives me an System.FormatException
Assert.AreEqual(expected, actual, "The value returned for {0}'s Foo method should be 'Bar'.",
typeof(Calculator));
Assert.AreEqual(expected, actual, "The value returned for {0}'s Foo ...
0
votes
1answer
285 views
“System.FormatException: Input string was not in a correct format” thrown when filling a dataset through IIS 7 but no error in Cassini?
Visual Studio 2010 Express, ASP.NET MVC3, C# with an ODBC data connection on Windows Server 2008 R2.
This code runs as expected when using Visual Studio's built-in web server, but fails with a ...
0
votes
3answers
465 views
c# Convert.ToDouble format exception error
I'm trying to convert this string to double -> Convert.ToDouble("1.12"); and this is the output -> System.FormatException was unhandled.
Should I do something like this?
public static double ...
0
votes
3answers
188 views
FormatException: Input string was not in the correct format
The exception is always thrown at the following statement..:
protected void DataList2_SelectedIndexChanged(object sender, EventArgs e)
{
x= should get the primary key of the item selected ...
0
votes
1answer
408 views
System.FormatException: Input string was not in a correct format
In the following code, when I try to add an Item to an ASP DropDownList, System.FormatException: Input string was not in a correct format, is thrown.
using System;
using System.Collections.Generic;
...
0
votes
4answers
1k views
Giving System.FormatException: String was not recognized as a valid DateTime. using datetime.ParseExact in C#
I am below code in c#, where I am converting my string type format date to datetime, but giving the error.
if (!string.IsNullOrEmpty(SessionDictionary.GetValue("UserDetails", "ExpiryDate")))
{
...
0
votes
2answers
120 views
Why is this code throwing a FormatException?
I have written the following code:
Dim E_ID As Integer
E_ID = Convert.ToInt16(Request.QueryString("ID"))
But when it executes, I always get a FormatException:
error: Input string was not in a ...
0
votes
3answers
410 views
c# FormatException was unhandled
I'm parsing chat from a game and i get this string "搾68 00 00 37 00 45 00 00"
recipe = recipe.Replace("搾", "");
string[] rElements = new string[8];
rElements = recipe.Split(' ');
int num = ...
0
votes
3answers
245 views
Weird DateTime.Parse exception in 3.5?
This line of code works on my computer (64-bit Win7). I tested on XP 32bits in a VM. It works fine.
static bool HasExpire { get { return DateTime.Now >= DateTime.Parse("10/20/2010"); } }
However ...
0
votes
1answer
65 views
Strange FormatException after upgrading in VS 2010
I get this FormatException after i upgraded to VS 2010. Not anything really special.
Code:
private void ManageDateEditControls()
{
apoDateEdit.DateTime = ...
0
votes
2answers
368 views
Handling FormatExceptions using XmlSerializer.Deserialize
I have a third party web service that returns this xml
<book>
<release_date>0000-00-00</release_date>
</book>
I am trying to deserialize it into this class
public class ...
0
votes
1answer
402 views
C# WPF app crashes with System.FormatException - Corrupt .resources file
I've inherited a C# .net WPF application from a now ex-employee and am having some difficulties running the application. It all builds fine without a single error or warning, but before the GUI ...