Private Sub findPSTButton_Click(sender As Object, e As EventArgs) Handles findPSTButton.Click
BackupperProgress.Value = 0
MasterTimer.Start()
Try
For Each foundPST As String In My.Computer.FileSystem.GetFiles(
Environment.GetFolderPath(Environment.SpecialFolder.UserProfile), Microsoft.VisualBasic.FileIO.SearchOption.SearchAllSubDirectories, "*.pst")
PSTList.Items.Add(foundPST)
Next
Catch ex As Exception
End Try
BackupperProgress.Value = 99
End Sub
ASKER
ASKER
Overload resolution failed because no accessible AddRange can be called with these arguments.
ASKER
ASKER
Visual Basic .NET (VB.NET) is an object-oriented programming language implemented on the .NET framework, but also supported on other platforms such as Mono and Silverlight. Microsoft launched VB.NET as the successor to the Visual Basic language. Though it is similar in syntax to Visual Basic pre-2002, it is not the same technology,
TRUSTED BY
Try changing this line of code
Open in new window
To thisOpen in new window