Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Updating the Inbox in Outlook
Message
Information générale
Forum:
Visual FoxPro
Catégorie:
Codage, syntaxe et commandes
Divers
Thread ID:
00708659
Message ID:
00709180
Vues:
24
I'm trying to add records to Outlook's inbox

Try this:
oApp = CreateObject( 'Outlook.application' )
oSpace = oApp.GetNameSpace( 'MAPI' )
oMess = oSpace.GetDefaultFolder( 6 )
oNew = oApp.CreateItem( 0 )
oNew.Subject = 'This is a line'
oNew.Recipients.Add( 'me@myself.com' )
oCopy = oNew.Copy()
=oCopy.Move( oMess )
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform