I want to create a sequence of message using textbox when my program is running. I was create a windows application to read a data from a data table and stored into database table. In that time am using a multiline text box to show continuous message. But i can’t do this. The message show at the end of the process complete..
please help me to do this..
You need to run your code on a background thread so that the UI is able to update.
Use the
BackgroundWorkerclass and its progress reporting functionality.