Just wondering, how do you check if a directory exists? i thought it was like
VB Code:
  1. Private Sub Form_Load()
  2.     If FileExists(App.Path & "\yay.dir") Then
  3.         Print vbNullString
  4.     Else
  5.         MsgBox ("File needs to be ..")
  6.         Unload Me
  7.     End If
  8. End Sub

but that doesnt work.