-1

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
Community
  • 1
  • 1
farahxx
  • 5
  • 7

1 Answers1

2

It's the inequality operator, ≠.

Alexander
  • 59,041
  • 12
  • 98
  • 151
  • Why to answer this question instead of closing and mark as duplicated [of this one](http://stackoverflow.com/questions/532435/what-does-mean?rq=1) ? – Sgdva Mar 06 '17 at 07:30
  • @Sgdva I've cast a vote to close this question, and singled the duplicate. – Alexander Mar 06 '17 at 07:32
  • @farahxx If I have answered your question, please mark my question as answered. – Alexander Mar 06 '17 at 07:32