After the first listProcess.items.add, the listProcess listbox doesn't refresh. Basically, just populating one listbox from another, as directories get copied. Just trying to show a status of which copy is being done. Neither of the refreshes seem to work. This is too simple to be stumping me. Thanks in advance.
While ix < listSaveFolders.Items.Count
listProcess.Items.Add(listSaveFolders.Items.Item(ix))
listprocess.refresh
Me.Refresh()
My.Computer.FileSystem.CopyDirectory(CStr(listSaveFolders.Items.Item(ix)), bk_dir_top & get_folder_end(ix), True)
End While