Forum: C# Apr 2nd, 2008 |
| Replies: 5 Views: 2,807 Does this help?
private void checkedListBox1_SelectedIndexChanged(object sender, EventArgs e)
{
if (checkedListBox1.GetItemCheckState(0) == CheckState.Checked)
... |
Forum: C# Apr 2nd, 2008 |
| Replies: 4 Views: 982 did you move or rename one of your forms or maybe even your assembly? |
Forum: C# Apr 1st, 2008 |
| Replies: 5 Views: 2,205 Do you dispose of all your resources after the 1st button click? Do you specify a filename or is it a static filename you are using? sorry for all the questions im trying to determine more or less... |
Forum: C# Mar 31st, 2008 |
| Replies: 5 Views: 1,944 Have you tried:
DateTime.Now.ToShortTimeString();
or
DateTime.Now.ToLongTimeString(); |
Forum: C# Mar 31st, 2008 |
| Replies: 5 Views: 2,205 First, have u got any more information on the type of exception you are getting? and what exactly is the error message? |
Forum: C# Mar 31st, 2008 |
| Replies: 11 Views: 4,526 Does this work easier for you? but as they say as long as it works then its all goooood!!! |
Forum: C# Mar 31st, 2008 |
| Replies: 11 Views: 4,526 Hi i have used this method to stop users from opening one of my applications multiple times.
string RunningProcess = Process.GetCurrentProcess().ProcessName;
Process[] processes =... |