Forum: C# Sep 27th, 2008 |
| Replies: 3 Views: 784 try something like this:
for (int i = 0; i < listBox1.Items.Count; i++)
make sure it's i < and not i <= since you are starting with index 0.
Good luck |
Forum: C# Aug 25th, 2008 |
| Replies: 3 Views: 2,426 A simple way to check if the current C# program is the only instance of itself running. |
Forum: C# Jun 16th, 2008 |
| Replies: 10 Views: 5,719 Use regular expressions, regex, to create an efficient textbox that only takes in digits as input. |