blah blah blah is here! blah blah » Close

0
votes
2 answers

Adding Image to sqldatabase

Hey guys need to know how i can add an image from my image control that I have on my website to my sql database, so far I have no problems with textbox's dropdownlists etc but trying to save an image to my database is really hard? below is ...

2
votes
0 answers

error when inserting data into SqlDatasource

I am getting an error, this should work all I want do is insert textbox items into my database and have it show in my grid view which is set to my sqldatasource1. Object reference not set to an instance of an object. Am I missing som ...

0
votes
1 answers

reset queue

Hey, upon button click i add a new person to the queue how do I reset the listBox at the same time? I want to be able to reset it but still have the old array added to the next? so I add say john then when i want to add another name it dele ...

0
votes
1 answers

Invalid operation Handle

private void button2_Click(object sender, EventArgs e) { Person p = personQueue.Dequeue(); textBox3.Text = p.firstName; textBox4.Text = p.SurName; fillListBox(personQueue) ...

Feedback