Guest User

Untitled

a guest
Sep 1st, 2018
147
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. Option Explicit
  2. Option VBAsupport 1
  3.  
  4. Dim dlg As Object
  5.  
  6. Enum States
  7.   initialSearch = 1
  8.   generatingIndexEntries = 2
  9.   fixingBadTermRefFmt = 3
  10. End Enum
  11.  
  12. Const strStateNames As Array("Initial Search", "Generating Index Entries", "Fixing Bad Term References")
  13.  
  14. Dim curState As States = States.initialSearch
Add Comment
Please, Sign In to add comment