An exception that is thrown because the value of a variable is outside the allowed range

learn more… | top users | synonyms

0
votes
1answer
32 views

Linq to Entities: The conversion of a char data type to a datetime data type resulted in an out-of-range datetime value

I have the following snippet that generates the error, I assume this is a result of the ConditionRatingList not having any values. Does anyone have any suggestions on how to rectify this within the ...
0
votes
1answer
38 views

VBScript, is there a way to check Subscript out of Range?

I am getting an error that says: Subscript out of range: '[number: 8]' I just want to add something like this: //if not RowArray(8) out of range then // kill yourself at RowArray(8) //else // kill ...
0
votes
2answers
77 views

std::out_of_range error accessing a std::string in C++

I am part of a team of three moderate-aptitude programmers, and we are currently attempting to write a program in C++ to embody our new encryption algorithm. However, we have encountered an error ...
1
vote
1answer
17 views

Having trouble showing an Account ID and balance in two textboxes

I can't seem to figure out how to display Account ID and Account Balance into a textbox after the selected index is changed in the listbox. I have a Customer class and a Checking account class(which ...
3
votes
3answers
181 views

listview display error with List strings in C#

I have a listView1 in C# WinForms which displays 2 List List<string> pths; List<string> rec; public void Disp () { DisplayListInColumns(listView1, pths, 0); ...
0
votes
3answers
156 views

python list of lists index out of range [closed]

I have read in a matrix of numbers and I am trying to work with each cell and perform tests on each one. If the number is != 0 I want to use it so if it is 0 I am currently incrementing x and y to ...
0
votes
3answers
42 views

Java List Errors Out of Range

import java.util.*; class A { private ArrayList <B> bList; private Random generator = new Random(); A(List<B> initialList) { bList ...
1
vote
0answers
72 views

Out of range error in device function recursion:

Now I'm parallelizing an AMR(adaptive mesh refinement) code with cuda. The basic data structure is grid class. All the grid objects with different resolutions linked together constitute the whole grid ...
0
votes
1answer
116 views

Intermittent “out of range” exception on string comparison

Environment: C#, VS2012, SharePoint 2010 I'm using a console application to interface with a SharePoint site and I'm trying to do a simple string comparison against a collection of alert titles... ...
0
votes
1answer
182 views

C++ vector constructor throws std::out_of_range exception (Microsoft C++ stdlib)

Hi I have a strange problem that std::vector<>'s constructor is throwing an out_of_range exception. The exception reads like: First-chance exception at 0x000007fefde09e5d in 3dsmax.exe: Microsoft ...
0
votes
1answer
54 views

ArgumentOutOfRangeException when accessing resource collection item

Where can I create this object in the asp.net lifecycle methods without receiving an out of range exception. Right now the only place that I can actually get a resource collection containing values is ...
0
votes
1answer
54 views

Trouble with matrix in Python

I'm trying to transcribe my Java classes to Python. The last one was the Warshall Algorithm, but when I run the aplication, I get this error: C:\Python33\python.exe ...
0
votes
3answers
116 views

Indexing an Array - Out of Range

I'm iterating through a string list (storedProcedures) and splitting each list item into an array. I would like to then access the array elements using specific indices. I am getting an out of range ...
1
vote
1answer
83 views

Asynchronous HTTP requests throws IndexOutOfRange Exception in Generic List

I'm working on a Windows Service that cycles through a series of databases and then sends SMS messages using HTTP requests. In the beginning of the method that goes through each database, I define a ...
-1
votes
1answer
305 views

Getting weird error.. Microsoft C++ exception: std::out_of_range at memory location 0x002cf6 [closed]

Ok.. So I'm working on this code on C++. Code is below.. #include <iostream> #include <ctime> #include <string> #include <vector> using namespace std; vector<int> ...
0
votes
1answer
804 views

pointerIndex out of Range multitouch

At first, i really know there are more than one post about it, but non helped me fixing the bug/misstake. I am sorry if its a repost and hope you guys can help me getting rid of this bug. 11-28 ...
0
votes
0answers
121 views

subplot matplotlib wrong syntax

I am using matplotlib to subplot in a loop. For instance, i would like to subplot 49 data sets, and from the doc, i implemented it this way; import numpy as np import matplotlib.pyplot as plt ...
1
vote
2answers
345 views

ASP If Statement if Split() is empty as I get Subscript out of range: '[number: 1]'

I have a single form field that asks for "Full Name" when the user signs up. I want to then split that string into first name and then surname. I can get that working with the following code: <% ...
0
votes
1answer
70 views

Index out of range error Python greedy method

Hello I am currently getting an index out of range error from the following code: (I will post the code first and then the error) Main File: import Knapsack_Test size = 10 W = 2*size knapsack = ...
0
votes
1answer
261 views

Loading in large text file (50,000+ lines, ~8MB) causes my program to stop?

Answered: changing while (tracefile->good()){ getline(*tracefile,line); .... to while(getline(*tracefile, line)){ .... did the trick. Thank you, @pmr. Original: I made a cache ...
0
votes
1answer
136 views

Why this can course an out of range exception

Why this code runs, VC++ will show a out of range exception? error message: vector Line:933 Expression: "Standard C++ Libraries Out of Range" & & 0 high is a function to return the highest ...
0
votes
1answer
2k views

terminate called after throwing an instance of 'std::out_of_range' what(): basic_string::erase

string Farfallino::decode(string buff) { string stringa; size_t pos; while(1) { while(pos = (buff.find("afa"))) { buff.erase(pos, 3); buff.insert(pos, "a"); } while(pos = ...
0
votes
1answer
93 views

Insert an underlying value into a non-existing index

I'm trying to solve a simple algorithm a specific way where it takes the current row and adds it to the top most row. I know there are plenty of ways to solve this but currently I have a text file ...
-1
votes
1answer
102 views

ListBox1.SelectedIndex ArguementOutofRange Error c# Windows Fors

Please some body help me with my codes i am getting ArguementOutofRange Exception again & again. Please tell me what am i doing wrong. I tried every loop for this but it always gives ...
0
votes
1answer
564 views

listbox1.SelectedIndex (arguement out of range exception) c#/.net

I am trying to browse web pag1es using a listbox, I have added three links to it. All three links are loading well but when third link finishes loading I got this exception. Exception is: ...
1
vote
2answers
144 views

recursive function has out_of_range exception

Given a global vector list of ASCII codes and corresponding number values and a string, like 000.00-000.0.0.0, this function takes an input token strings 2-char or 3-char long and replaces it with a ...
1
vote
0answers
156 views

std::out_of_range exception being thrown when returning std::string [closed]

OK, I have a class with a function get_data(). This returns an std::string created std::stringstream, along the lines of: class Foo { ... std::string get_data() { ...
0
votes
1answer
110 views

collection processing in BackgroundWorker

I try to make my ListBox connected to ObservaleCollection be more efficient so for the DB query I implemented a BackgroundWorker to do the job. Then whithin this backgroundworker I want to add every ...
-2
votes
2answers
484 views

Unhandled exception at 0x77e4bef7 in 1.exe: Microsoft C++ exception: std:out_of_range at memory location 0x0012fb8c

There's something wrong in rows 25-30. I requested the existing index but get an error. I don't understand the problem, what's wrong? string *shells_host = new string[cnt]; for(int ...
1
vote
5answers
166 views

C# ArgumentOutOfRangeException parameter intellisense

When I'm writting: throw new ArgumentOutOfRangeException("") Placing the caret between the quotes, and pressing Ctrl+Space to open up intellisense actually does something! The strange and ...
0
votes
2answers
764 views

Is format String[] whereArgs correct in SQLiteDatabase.delete?

Why this code: String[] ids = {"5", "1", "3"}; db.delete(ACCOUNTS_TABLE, KEY_ROWID, ids); return this exception? android.database.sqlite.SQLiteBindOrColumnIndexOutOfRangeException: bind or column ...
0
votes
2answers
6k views

System.IndexOutOfRangeException - Index was outside the bounds of the array

I am creating a program that imports a 2d object array of information from an excel sheet. It then passes this array to ProcessObjects method to be processed and printed/exported back out to an excel ...
1
vote
2answers
236 views

Is March 27th, 2012 of significance to SQL Server in a Varchar to Datetime conversion?

I have a stored procedure that takes a datetime parameter which is passed in as a string. Such as this: Procedure: CREATE PROCEDURE [dbo].[MyFancySP] @MyStartDate datetime = NULL, @MyEndDate ...
2
votes
2answers
381 views

Problems with C# lists, and ArgumentOutOfRangeException

I am in the process of making a farming/tower defense game and I am very new at programming. I seem to have a major problem with using Lists<> or arrays in XNA. I cannot get it to return the index ...
0
votes
1answer
145 views

Using c++, why am I getting the error message “string subscript out of range” when I know it is not? Or at least it seems that way

EDIT - there are no blank lines. EDIT 2 - my bad, it seems I was wrong all along. There is a blank line somewhere, although the csv file indicates otherwise. It's working now. Okay so here is the ...
0
votes
1answer
490 views

Index Out of Range error after adding an AsyncTask

So I had a thread that was taking care of some network stuff for the app behind the scenes, but for some reason the IDE kept thinking that I was updating the UI so it wouldn't stop crashing. I changed ...
0
votes
2answers
510 views

Please what's causing this “Index was out of range Must be non-negative… error”?

Please can someone really tell me what's wrong with this code that I'm having this error: System.ArgumentOutOfRangeException was caught Message=Index was out of range. Must be non-negative and less ...
0
votes
1answer
83 views

IndexOutofRangeException Winform

What's wrong with my code?? string birthdate = ((DataRowView)comboBox1.SelectedItem).Row["birthdate"].ToString(); //pulled the data into the database () string[] split = birthdate.Split('/'); ...
0
votes
3answers
41 views

Why does VecMedian generate out of range?

Currently I'm trying to figure out why my helper function for computing the median of a vector of HW numbers is not working correctly. My helper function is suppose to work with more than just a ...
0
votes
1answer
1k views

Column position '0' is out of range. The number of columns for this ResultSet is '3'

In a previous piece of code I received the exact same error I listed in the title. I had a username validator in my code but forgot to include the following code: password ...
2
votes
1answer
2k views

Adding Parent and Child Nodes in TreeView from Sql Server 2008

i want to add the parent and child nodes from sql server to treeview. i implemented some code. but i gets error "Index was out of range" below is the code i am using to fill parent and child nodes. ...
0
votes
1answer
485 views

Why my customized lookupEdit throw the following error

Error: Index was out of range Must be non-negative and less than the size of the collection I have a customized LookUpEdit - public class MyLookUpEdit : LookUpEdit I refer to the following link to ...
0
votes
4answers
270 views

IndexOutOfRangeException when changing selected TabItem twice

I have the following simple WPF-app: <Window x:Class="TabControlOutOfRangeException.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" ...
0
votes
1answer
564 views

Activate windows of files stored in arrays, but getting subscript out of range error?

Sub Merge() Dim File As String Dim AllFiles(), Filename As Variant Dim count, test, StartRow, LastRow, LastColumn As Long Dim LastCell As Variant test = 0 ChDir "C:\" 'Insert suitable directory ...
0
votes
1answer
93 views

Argument OutOfRangeException C# DataGridView

i have an argument outofrangeexception for my datagridview. i try to fill it. It stops when i = 1; I dont know where is my mistake but its not the array donnee[,] here's my code for(int i = 0; i ...
0
votes
1answer
219 views

Open array files subscript out of range

I'm trying to open up a series of xlm files stored in an array, but the error keeps popping up that says that the subscript is out of range. Any advice? Thanks Dim AllFiles() As String Dim count, ...
0
votes
1answer
445 views

Open .dat files with a Hex Editor

I'm trying to Open up a series of .dat files with a Hex Editor thru the vba in excel and then start a copy and paste process. Does anybody know how one can open up a file using a program other than ...
0
votes
1answer
652 views

How to prevent the Scrollbar out of range?

I use the code procedure TMyCanvas.RichEditChange(Sender: TObject); var ScrollInfo: TScrollInfo; begin FillChar(ScrollInfo, SizeOF(ScrollInfo), 0); ScrollInfo.cbSize := SizeOf(ScrollInfo); ...
-2
votes
3answers
4k views

#1264 Out of range value fix?

When I try to insert the below into my MySQL INSERT INTO `rooms` (`id`, `ip`) VALUES ('131213', '-259857341'); I fails with the follow error: Warning: #1264 Out of range value for column 'ip' at ...
2
votes
1answer
604 views

C#: How to fix this ArgumentOutofRangeExeception?

Making myself a password manager and I'm running into some problems with a segment of code. Whats supposed to happen is the application opens an xml file, and then populates a listview with the items ...

1 2