Hi,
Sory for the late reply. My code is quite simple.
Here is one of its process :
Dim Cursor1 AsCursor
Cursor1 = SQL1.ExecQuery("SELECT id FROM table1")
For n = 0 To Cursor1.RowCount - 1
SQL1.ExecNonQuery("update table2 set flag = 'readed' where id = '" & Cursor1.GetString("col1") & "'")
Text1.Text = n+1 & " of " & Cursor1.RowCount
Next
I want to show the user the progress of the process.
Before this, I was trying to use progress bar, but have no luck with that, so I turn using TextBox. But also no luck as well.
any solution for this ?