Need c# expert!
•
28 May 2007, 12:16
•
Journals
I need somebody who's good in coding with c#!
EDIT:: (No nothing to do with HAX!!)
you find me on irc with the nick Circus !
EDIT:: (No nothing to do with HAX!!)
you find me on irc with the nick Circus !
EDIT: THIS IS PART WHERE FAULT IS!
if (toegevoegd == false)
{
int prijs1 = (int)dsProducten.Tables["product"].Rows[0]["Prijs"];
DataRow nr = dsVerkoop.Tables["Verkoop"].NewRow();
nr["Productnaam"] = dsProducten.Tables["product"].Rows[0]["Productnaam"];
nr["AantalStuks"] = AantalStuks;
nr["ProductID"] = dsProducten.Tables["product"].Rows[0]["ProductID"];
nr["Prijs"] = prijs1;
dsVerkoop.Tables["Verkoop"].Rows.Add(nr);
Totaalprijs = AantalStuks * prijs1;
}
be sure to not only TypeCast here (if its an integer)
int prijs1 = (int)dsProducten.Tables["product"].Rows[0]["Prijs"];
do it like:
int prijs1 = Convert.To.Int16(dsProducten.Tables["product"].Rows[0]["Prijs"]);
also if it fails surround it with try / catch to get the error