Comment créer un raccourci avec VB.net
Fermé
azerty012
-
2 avril 2010 à 03:12
hassen major Messages postés 1 Date d'inscription dimanche 7 août 2011 Statut Membre Dernière intervention 19 septembre 2011 - 19 sept. 2011 à 01:15
hassen major Messages postés 1 Date d'inscription dimanche 7 août 2011 Statut Membre Dernière intervention 19 septembre 2011 - 19 sept. 2011 à 01:15
A voir également:
- Comment créer un raccourci avec VB.net
- Comment créer un groupe whatsapp - Guide
- Créer un compte google - Guide
- Créer un compte gmail - Guide
- Comment creer un pdf - Guide
- Creer un raccourci clavier - Guide
2 réponses
hassen major
Messages postés
1
Date d'inscription
dimanche 7 août 2011
Statut
Membre
Dernière intervention
19 septembre 2011
4
Modifié par hassen major le 19/09/2011 à 01:17
Modifié par hassen major le 19/09/2011 à 01:17
Bonjour, Voila !
----------------------------------------Code-------------------------------------------
Dim Bureau As IWshRuntimeLibrary.WshShell
Dim Raccourci As IWshRuntimeLibrary.WshShortcut
Dim VarTrav As String
Bureau = New IWshRuntimeLibrary.WshShell
' Chemin et nom du raccourci
VarTrav = My.Computer.FileSystem.SpecialDirectories.Desktop &_ "\NomDeMonRaccourci.lnk"
Raccourci = Bureau.CreateShortcut(VarTrav)
' Cible
Raccourci.TargetPath = "C:\MonRepertoire\MonExecutable.exe"
' Icône
Raccourci.IconLocation = "D:\MonRepertoire\ico\MonIcone.ico"
' Enregistrement
Raccourci.Save()
----------------------------------------------------------------------------------------
----------------------------------------Code-------------------------------------------
Dim Bureau As IWshRuntimeLibrary.WshShell
Dim Raccourci As IWshRuntimeLibrary.WshShortcut
Dim VarTrav As String
Bureau = New IWshRuntimeLibrary.WshShell
' Chemin et nom du raccourci
VarTrav = My.Computer.FileSystem.SpecialDirectories.Desktop &_ "\NomDeMonRaccourci.lnk"
Raccourci = Bureau.CreateShortcut(VarTrav)
' Cible
Raccourci.TargetPath = "C:\MonRepertoire\MonExecutable.exe"
' Icône
Raccourci.IconLocation = "D:\MonRepertoire\ico\MonIcone.ico"
' Enregistrement
Raccourci.Save()
----------------------------------------------------------------------------------------
hugodecasta
Messages postés
106
Date d'inscription
mercredi 11 novembre 2009
Statut
Membre
Dernière intervention
30 août 2014
23 avril 2011 à 13:02
23 avril 2011 à 13:02
la meme
c'est vraiment important
c'est vraiment important