blah blah blah is here! blah blah » Close

0
votes
1 answers

Different color for each listbox item

Howdy, Please help me. I wonder how to give a different color for each listbox item. I've try to make a short line of code to handle that but it was failed. [code] if(this.listBox1.InvokeRequired==true){ this.listB ...

2
votes
3 answers

C# to display different texts at different time, with a click of a button.

this may seem trivial, but I still have not figured out how to do it. private void button1_Click(object sender, EventArgs e) { textBox1.Text = "Waiting..."; System.Threading.Thread.Sleep(5000 ...

0
votes
0 answers

One dataGridView for many different tables from same database?

it seems to me that for one dataGridView, it can only be used to display for only ONE table from a database, is it true? I want to implement something such that when user press different buttons, it will display on the dataGridView differen ...

Feedback