I have created a porcess that manipulates large volumes of text. I have created a form that has a button that manually starts the process. I have tried to give some feedback that the process is actually progressing through the data by changing the value of text fields on the form. However the text fields do not update on the form until after the process is complete. I had this working in another program but cannot figure out what I am doing different. I use the following code to change the text.
[ Form2.Label2.Text = "Started"
Form2.Show()
Call Main()
Form2.Label1.Text = "SComplete"
]