Un truc sur outlook

cs_colargol Messages postés 10 Date d'inscription jeudi 30 mai 2002 Statut Membre Dernière intervention 16 juin 2006 - 31 mai 2002 à 00:18
cs_Marquo Messages postés 31 Date d'inscription vendredi 22 août 2003 Statut Membre Dernière intervention 14 octobre 2005 - 18 sept. 2003 à 12:01
Salut a tous,

j'aimerai savoir comment pourrais-je appeller outlook tout en remplissant l'adresse d'en-tete.

merci d'avance
:)

3 réponses

fredlynx Messages postés 662 Date d'inscription mercredi 16 janvier 2002 Statut Modérateur Dernière intervention 16 octobre 2010 3
31 mai 2002 à 00:51
La methode suivante ouvre le gestionnaire de courier par défaut de la machine...

Private Declare Function GetDesktopWindow Lib "user32" () As Long

Private Declare Function ShellExecute Lib "shell32.dll" Alias "ShellExecuteA" _
(ByVal hwnd As Long, _
ByVal lpOperation As String, _
ByVal lpFile As String, _
ByVal lpParameters As String, _
ByVal lpDirectory As String, _
ByVal nShowCmd As Long) As Long

Private Const SW_SHOWNORMAL = 1

sURL = "mailto:" & Email & "?SUBJECT=" & Sujet
Call ShellExecute(GetDesktopWindow(), "open", sURL, 0&, 0&, SW_SHOWNORMAL)

<center>http://www.lynx-asp.fr.st
WebMaster</center>
0
cs_colargol Messages postés 10 Date d'inscription jeudi 30 mai 2002 Statut Membre Dernière intervention 16 juin 2006
31 mai 2002 à 12:42
0
cs_Marquo Messages postés 31 Date d'inscription vendredi 22 août 2003 Statut Membre Dernière intervention 14 octobre 2005 1
18 sept. 2003 à 12:01
Bonjour,

je voudrais en plus joindre un fichier, c possible ?
0
Rejoignez-nous