danielrgoes Posted September 28, 2011 Report Share Posted September 28, 2011 Bom dia pessoalEu faço aki na empresa um importação de contatos para o Microsoft Outlook com um arquivo .csvgostaria de saber como faço um script para fazer isso automatico ou seja importar para o MO via delphi os contatosObrigado Quote Link to comment Share on other sites More sharing options...
0 Jhonas Posted September 28, 2011 Report Share Posted September 28, 2011 Amigo, tem varios exemplos na internetvejahttp://www.google.com.br/search?hl=pt-BR&a...3265l2-5.6l11l0abraço Quote Link to comment Share on other sites More sharing options...
0 Jhonas Posted September 28, 2011 Report Share Posted September 28, 2011 Um exemplo bem simples{$IFDEF SYN_COMPILER_6} uses ComObj, Outlook2000; {$ELSE} uses ComObj, Outlook8; {$ENDIF} procedure NewContactItem; var OutlApp: OutlookApplication; OutlNamespace: Namespace; ContactFolder: MAPIFolder; Contact: ContactItem; begin OutlApp := CoOutlookApplication.Create; OutlNamespace := OutlApp.GetNameSpace('MAPI'); ContactFolder := OutlNamespace.GetDefaultFolder(olFolderContacts); Contact := OutlApp.createitem(olContactItem) as ContactItem; Contact.LastName := 'User'; Contact.FirstName := 'Jack'; Contact.HomeAddressStreet := 'Street'; Contact.HomeAddressCountry := 'Germany'; Contact.HomeAddressPostalCode := '12345'; Contact.HomeAddressCity := 'City'; Contact.HomeTelephoneNumber := '+49(0)1239/23903'; Contact.HomeFaxNumber := '+49(0)1239/23904'; Contact.Email1Address := 'info@user.com'; Contact.Save; OutlApp := nil; end; procedure TForm1.Button1Click(Sender: TObject); begin NewContactItem; end;abraço Quote Link to comment Share on other sites More sharing options...
Question
danielrgoes
Bom dia pessoal
Eu faço aki na empresa um importação de contatos para o Microsoft Outlook com um arquivo .csv
gostaria de saber como faço um script para fazer isso automatico ou seja importar para o MO via delphi os contatos
Obrigado
Link to comment
Share on other sites
2 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.