Re: [2008] Using Datagridview and progressbar
I really need help
If someone could lead me to a Datagridview tutorial i'll be thankfull
Re: [2008] Using Datagridview and progressbar
1. You handle the ProgressChanged event of your WebBrowser control. There's an example in MSDN library for handling the WebBrowser.ProgressChanged event, you can look it up.
2. You need to use a TextFieldParser or ADO.Net to load the text file's data to a datatable, then bind that datatable to your datagridview. There are already many examples on this in this forum. Just search for the term "csv datatable" and you should find some.
Re: [2008] Using Datagridview and progressbar
The MSDN Library also has good examples of using the TextFieldParser class that stanav mentioned.. I was going to add a code example to the CodeBank but decided against it because they wouldn't offer anything that MSDN doesn't already.