Problème création logiciel Visual Basic

Résolu/Fermé
tholo18 Messages postés 63 Date d'inscription jeudi 12 avril 2012 Statut Membre Dernière intervention 26 décembre 2014 - Modifié par tholo18 le 2/06/2012 à 18:57
tholo18 Messages postés 63 Date d'inscription jeudi 12 avril 2012 Statut Membre Dernière intervention 26 décembre 2014 - 2 juin 2012 à 18:57
Bonjour,

En ce moment je développe un logiciel avec Windows Visual Basic 2010 et je n'arrive pas à créer un évènement. Je voudrais que si un dossier n'existe pas dans le dossier Application Data, qu'il soit crée mais que si il existe alors il faudrait que le logiciel ne touche à rien. Voici le code que j'ai écrit (certaines lignes de code ne tiennent pas sur les lignes et elles continuent en-dessous) :

Public Class Form1  

    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click  
        If System.IO.File.Exists(Environment.GetFolderPath(Environment.SpecialFolder. ApplicationData) & "\launcher") = True Then  
            Process.Start("minecraft.exe")  
        ElseIf System.IO.File.Exists(Environment.GetFolderPath(Environment.SpecialFolder. ApplicationData) & "\launcher") = False Then  
            Dim sw As New System.IO.StreamWriter("launcher.folder", System.IO.File.Exists(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData)))  
        End If  

    End Sub  
End Class


Merci de vos futures réponses

A voir également:

1 réponse

tholo18 Messages postés 63 Date d'inscription jeudi 12 avril 2012 Statut Membre Dernière intervention 26 décembre 2014 21
2 juin 2012 à 18:57
C'est bon, j'ai trouvé.
0