Application.startup?

Status
Niet open voor verdere reacties.

SgtKenneth

Gebruiker
Lid geworden
9 apr 2010
Berichten
12
hoezo werkt dit neit:

Code:
My.Computer.FileSystem.FileExists(Application.StartupPath + "\test.exe.config")

als ik hem soort echo doet hij het wel goed...
 
Probeer eens:

Code:
If File.Exist(Application.StartupPath & "\test.exe.config") Then
'Iets
End If

Import wel ff System.IO, anders is het:

Code:
If IO.File.Exist(Application.StartupPath & "\test.exe.config") Then
'Iets
End If
 
Status
Niet open voor verdere reacties.
Terug
Bovenaan Onderaan