21-04-2007, 03:17 PM
Im working with that DLL Register tut but im trying to make it check to see if it already exist and if not register the provided files in a specific folder.
i want it to do is like Check the C:\WINDOWS\System32\name.dll but idk how :\
heres my function tho..
i want it to do is like Check the C:\WINDOWS\System32\name.dll but idk how :\
heres my function tho..
Code:
Function SystemFileExist(ByVal SystemFileName As String) As Boolean
If Dir("C:" & "\" & SystemFileName) = "" Then
SystemFileExist = False
Else
SystemFileExist = True
End If
End Function