tag used for unhandled error or Exception thrown by code
Questions tagged [unhandled]
170 questions
-2
votes
2 answers
IndexOutOfRangeException was unhandled
I'm getting an error IndexOutOfRangeException was unhandled at the line int euros = int.Parse(values[1]).
My .csv file looks:
name, 1, 2
name1, 3, 4
name2, 5, 6
public static void ReadData(out Turistai[] tourists, out int amount)
{
…

Andrius
- 21
- 2
- 5
-2
votes
4 answers
How do I fix a StackOverflowException?
I am getting a StackOverflowException in my C# program.
Cmodel.cs
public class CModel
{
public Vector3 Position { get; set; }
public Vector3 Rotation { get; set; }
public Vector3 Scale { get; set; }
public Model Model { get;…

Nate
- 41
- 1
-3
votes
1 answer
Now i found the problem and i dont know to correct 'Incorrect syntax near '('.'
Else
conn2.Open()
Dim cmd3 As New SqlCommand("update Pr_masterItem
(item_id, item_name, inventory, subtitutes_exist, assembly_bom, satuan, cost_is_adjusted, harga_beli, harga_jual) values
(@item_id,…

Ari's
- 1
- 3
-5
votes
1 answer
VB: Unhandled exception
My program crashes every time I click a button that points to a loop, here is the snippet of code that it points to:
Public Function ExecuteCommand(ByVal filePath As String, ByVal arguments As String) As String
Dim p As Process
…
-5
votes
4 answers
'StackOverflowException was unhandled' errors in C#
I have a problem with my code. I finally got it so there were no errors, but now i have to deal with stackoverflow...
can someone tell me what is wrong with my code?
public Matrix Projection
{
get { return Projection; }
…

Nate
- 41
- 1