|
-
Mar 2nd, 2016, 05:27 PM
#1
Thread Starter
New Member
Progress in Listbox step by step.
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
Tags for this Thread
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|