Hello, I want my users to follow the progress of my table backups in a listbox here is the code.

Private Sub Button2_Click(sender As System.Object, e As System.EventArgs) Handles Button2.Click
Me.Cursor = Windows.Forms.Cursors.WaitCursor
ListBox1.Items.Add("Backup articles...")
Backup_Article()
Me.Cursor = Windows.Forms.Cursors.Default
ListBox1.Items.Add("Backup articles OK.")
ListBox1.Items.Add("Backup layout...")
Backup_Layout()
ListBox1.Items.Add("Backup layout OK.")
ListBox1.Items.Add("Backup klanten...")
Backup_klanten()
ListBox1.Items.Add("Backup klanten OK.")
End Sub

(The Backup_XX() are private Sub routines.) But the listbox fills only at the end of all routines... Not when one routine in finished...
How can I inform my user step by step?

Greetings,
Koen