TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Riki Dev
NA
5
1.1k
Error system.indexoutofrangeexception on datagridview
Sep 19 2017 2:58 AM
Hello guys i have this error: Indexoutofrangeexception on this code:
else
if
(comboBox1.Text ==
"CSV"
)
{
try
{
String CodArt, Descrizione, CodEAN =
null
, Immagine =
null
, fornitore =
null
;
decimal
Prezzo;
int
check = 0;
//controllo se è stato selezionato un fornitore dalla datagridview
foreach
(DataGridViewRow row
in
dataGridViewFornitore.Rows)
{
if
(
this
.dataGridViewFornitore.SelectedRows.Count == 1)
{
check = 1;
// get information of 1st column from the row
fornitore =
this
.dataGridViewFornitore.SelectedRows[0].Cells[0].ToString();
}
}
if
(check == 1)
{
using
(var rd =
new
StreamReader(labelPercorso.Text))
{
Articolo a =
new
Articolo();
a.db =
this
.db;
while
(!rd.EndOfStream)
{
//setto codean e immagine =null ad ogni giro
CodEAN =
null
;
Immagine =
null
;
var splits = rd.ReadLine().Split(
';'
);
//-------------------
CodArt = splits[0];
Descrizione = splits[1];
Prezzo =
decimal
.Parse(splits[2]);
try
{
CodEAN = splits[3];
Immagine = splits[4];
}
catch
(Exception ex)
{
Console.WriteLine(
"Non è presente nè immagine nè codean"
);
}
a.CodiceArticolo = CodArt;
a.Descrizione = Descrizione;
a.CodiceEAN =
int
.Parse(CodEAN);
a.Immagine = Immagine;
a.Fornitore = fornitore;
a.InserisciArticoloCSV();
}
}
CaricamentoDataGridNonDisponbili();
}
else
{
MessageBox.Show(
"Devi seleziona un fornitore"
);
}
}
catch
(Exception ex)
{
MessageBox.Show(
"Errore "
+ ex);
}
}
Reply
Answers (
1
)
myiframe are not load data on first time click ,but again
how to generate employee id automatically in Mvc5