It's hard to measure percentage of loading program, you can check the starting screen of Windows. Microsoft can't even get the percentage of loading system.
First of all you need to know what the parent control is, then use "ParentControl.Controls.Find()" to get the control. If the label control is just a child of form, use "this.Controls.Find()".
...
As my understanding, there is not difference once you can run the app. the thing is which computer you are running the app, if there is "C:\temp" on the computer, if your user id has access right to...
Then don't use DialogResult value if you can't figure out how to handle it. Declare a public variable in the form to save DialogResult value, after the form is closed, check the public variable.
...
I am not sure which version of Visual Studio you are using. Assuming Visual Studio 2005 Windows project, there is DataGridViewImageColumn in DataGridView control. You can bind image data to the...
At the end of program, after everything is done, use Process class to check running process list and find excel to kill it. How do users know that excel application doesn't terminate correctly?
Serial port is receiving data continously, but in your event handler text file is open and close every time, which cause delay. Maybe lots of received...
First of all, make sure if DataGridView.ReadOnly = false. Then check all columns you want to eidt are readonly or not. If the column is readonly, you can't edit the related cell even the row is not...
I searched a lot for regular expression and finally got "^[+-]?\d+\.?\d*$", which can validate mostly, not completely. I put validation in KeyPress event because I don't wanna show invalid character...
Nothing wrong in your source code. It's only because you have Office 2007 installed. Did you ever try on another computer having different verson of Office? Webpage only exports 97-2003 excel format,...
Thank you guys for your help. I figured it out myself. It was because I send and receive data with type of text, not hex. I changed to hex and get all I want. There is no such setting for serial...