I have this function in my Form1,Form2,Form3 .. a bit of stupid way to do it..

VB Code:
  1. Function File_Exists(strFilePath As String)
  2.     If Dir(strFilePath, vbNormal + vbHidden + vbSystem + vbReadOnly) = "" Then
  3.         File_Exists = False
  4.     Else
  5.         File_Exists = True
  6.     End If
  7. End Function

if i just simply put that in a module exactly how it is, will it work from form1,form2,form ?

i use it like this..

If File_Exists("C:\test.txt) Then... 'etc..