Hi in the startup code I have following code what I want is to display the count in the label as it progress but I get a pause and then 1000 displayed have tried adding delays but just get longer pause then final count displayed thank you for help
dim n as int
For n = 0 to 1000
Label1.text = "Count = " & n
Next
dim n as int
For n = 0 to 1000
Label1.text = "Count = " & n
Next