Here is some code that I got from another website, but I am not able to understand what the <>
sign does. Can someone please explain it?
Dim FldrPicker As FileDialog
Application.ScreenUpdating = False
Application.EnableEvents = False
Application.Calculation = xlCalculationManual
Set FldrPicker = Application.FileDialog(msoFileDialogOpen)
With FldrPicker
.Title = "Select folder:"
.AllowMultiSelect = False
If .Show <> -1 Then GoTo NextCode
myPath = .SelectedItems(1) & "\"
End With