Hey Guys i need help with this last thing i cant get to work
The error i get with it is:
NullReferenceEx ception was unhandled by user code
Object reference not set to an instance of an object.
Now i get an error on the rule: txtKlantNaam.Te xt = OfferteArray[4];
what i whanne get done is that it loads some values from my previos page to this 1
The only thing that he loads in the page now is 19 from the BTW
it first worked with the OfferteArray but now something is wrong but i dont now what if yuo have onther way how i can load some values from the previos page in this one i am all ear
The error i get with it is:
NullReferenceEx ception was unhandled by user code
Object reference not set to an instance of an object.
Code:
#region adding textfields from database
public void Filling_Textfields(string[] OfferteArray, bool nieuw)
{
txtNoteID.Text = txtNoteID.Text;
txtBTW.Text = "19";
txtOfferteNr.Text = txtOfferteNr.Text;
txtDatum.Text = Functions.DateToNL(txtDatum.Text);
txtDebNr.Text = txtDebNr.Text;
txtKlantNaam.Text = OfferteArray[4];
txtContactpersoon.Text = txtContactpersoon.Text;
txtOmschrijving.Text = txtOmschrijving.Text;
txtOrderNr.Text = txtOrderNr.Text;
what i whanne get done is that it loads some values from my previos page to this 1
The only thing that he loads in the page now is 19 from the BTW
it first worked with the OfferteArray but now something is wrong but i dont now what if yuo have onther way how i can load some values from the previos page in this one i am all ear
Comment