Yea, I ended up making them both separate threads and that worked
mrlou88
Posts
-
Windows Forms Transition -
Windows Forms TransitionI'm sure this is easy but I can't seem to find the answer. I want to close a form and open another without using Form1.Hide() and Form2.Show(). I want the first form to totaly close and the next form to be opened not as a child. Thanks
-
ListView CheckBoxesDuh, I figured it out:-):cool:
-
ListView CheckBoxesDoes any one know if there is a way to default the ListView Checkbox Control to checked?
-
running windows application from Command promptWhy don't you just run it mininmized and set the form show in taskbar property to false. That makes it run invisibly.
-
Windows FormsI have a Form that contains a progress bar. While the form has focus, it works fine, but as soon as it loses focus the progress bar stops working and the form doesn't work until the process is completed. I've tried refreshing the form and the control to no avail. Thanks for any help. My next step is to try to multithread it.
-
String FormatSorry, didn't notice a programming forum, thought this was it. But thanks, that worked
-
String FormatCan anyone tell me why this is not working, just displays 0.00% this.label2.Text=String.Format("{0:p}",fs.Position/Convert.ToInt64(this.progressbar1.Maximum)*100); this.progressbar1.Maximum Contains 152333120 fs.Position is the current byte position in the file.