Hello,
I have a simple loop that adds values to a textbox. I would like to have it refresh the text box every 100 records so that the end user still believes it is processing data (it sometimes crunches several thousand records). I don't have the .refresh method for a textbox in .Net 1.1. How was this accomplished prior to 2.0? Below is an example of the behavior simiar to what I want.
Thanks in advance
for i = 0 to 1000
textBox.Text = i
textBox.refresh()
System.Threading.Thread.Sleep(200)
Next