Search found 61 matches: ooutlook

Return to advanced search

Re: Retrieve items from contact folders in Outlook

... have time I will study this problem. #include "fivewin.ch" #define olFolderContacts 10 ANNOUNCE RDDSYS FUNCTION MAIN( cNomeFile ) LOCAL oOutlook := CREATEOBJECT( "Outlook.Application" ) LOCAL oNameSpace := oOutlook:GetNameSpace("MAPI") LOCAL oContacts := oNameSpace:GetDefaultFolder( ...
by MarcoBoschi
Wed Sep 23, 2009 7:05 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Retrieve items from contact folders in Outlook
Replies: 5
Views: 1072

Retrieve items from contact folders in Outlook

... NEXT iField NEXT iContact NEXT iFolder Thanks In advance marco #include "fivewin.ch" #define olFolderContacts 10 FUNCTION MAIN() LOCAL oOutlook := CREATEOBJECT( "Outlook.Application" ) LOCAL oNameSpace := oOutlook:GetNameSpace("MAPI") LOCAL oContacts := oNameSpace:GetDefaultFolder( ...
by MarcoBoschi
Mon Sep 21, 2009 11:52 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Retrieve items from contact folders in Outlook
Replies: 5
Views: 1072

Re: Question about OLE, Word, Outlook and macros

Thanks for your answer, but unfortunately the same error occurs.

I tried the different possibilities :

oOutlook:Run:Macro("Macro")
oOutlook:Run("Macro")
oMail:Run:Macro("Macro")
oMail:Run("Macro")

Any idea ?
by driessen
Wed Sep 09, 2009 5:42 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Question about OLE, Word, Outlook and macros
Replies: 6
Views: 1031

Re: FASTREPORT - MAILExport

... return("") FUNCTION Interactivemessage() paramet cSubject, cBody, aTo, aFiles, lDirectSend LOCAL oOutLook,oMailItem,oRecip,oAttach,i,lOffice,lMailMancante if lDirectSend=NIL lDirectSend:=.f. endif if cSubject=NIL cSubject:="" endif if ...
by Marco Turco
Sat Aug 29, 2009 3:05 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FASTREPORT - MAILExport
Replies: 3
Views: 1115

Re: Sending emails with attachement

Here is my code : local oOutlook,oMailItem,wbody wbody:="Cher Confrère, Chère Consœur,"+CRLF+CRLF wbody:=wbody+"Veuillez trouver ici le rapport du médecin de garde " * oOutLook := TOleAuto():New("Outlook.Application") ...
by Jack
Thu Jun 11, 2009 1:43 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Sending emails with attachement
Replies: 4
Views: 883

Import msg files in Outlook

... another applications and so on. My questions is Is it possible to use a program like this #include "fivewin.ch" FUNCION MAIN() LOCAL oOutlook , i LOCAL aDir := DIRECTORY("*.MSG") oOutlook := CreateObject("Outlook.Application") FOR i := 1 TO LEN(aDir) :shock: oOutlook:SomeFunctionToImportmsg( ...
by MarcoBoschi
Sun Apr 12, 2009 5:29 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Import msg files in Outlook
Replies: 0
Views: 243

Re: Ficheros PST de contactos de OutLook

JM,

Usando un objeto OLE, como se explica en esa conversacion :-)

oOutlook := CreateObject( "Outlook.Application" )
...
by Antonio Linares
Sun Mar 15, 2009 3:41 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Ficheros PST de contactos de OutLook
Replies: 5
Views: 706

Re: Enviar Correo con Habour.

He conseguido enviar correo ok, con el outlook asi con un ejemplo que vi : static function GeneraCorreo() LOCAL oOutLook,oMailItem,oRecip,oAttach oOutLook := TOleAuto():New("Outlook.Application") oMailItem := oOutLook:Invoke("CreateItem", 0) oRecip := oMailItem:Invoke("Recipients") ...
by Garbi
Fri Jan 16, 2009 11:17 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Enviar Correo con Habour.
Replies: 2
Views: 580

Michel,

Try these lines before calling QUIT:

oMail = nil
oOutLook = nil
by Antonio Linares
Tue Dec 02, 2008 11:10 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Strange error while quitting application
Replies: 22
Views: 3451

Andrés,

Has probado a definir oOutLook:bPainted para que llame a GradientFill() ?
by Antonio Linares
Thu Aug 14, 2008 7:17 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Es posible con tOutlook tener aspecto 2007.
Replies: 4
Views: 840

right and I made on function Show LOCAL nPage := AScan( oOutLook:aGroups, { | o | o:lSelected } ) LOCAL nAllPages := Len (oOutLook:aGroups) FOR i := 1 TO nAllPages IIF (Valtype (aCtrl[i]) ="O",aCtrl[i]:Hide(), ) NEXT nTop = oWnd:nHeight - ( Len(oOutLook:aGroups ...
by Silvio
Sat Aug 02, 2008 3:58 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: change title header of outlook2003
Replies: 13
Views: 3600

Re: Hola

AIDA wrote:...mandame un correo...
¿ A donde ?

En vez de esto oOutlook:=CreateObject("Outlook.Application") se podria hacer oOutlook:=CreateObject("OutlookExpress.Application")
by JmGarcia
Tue May 27, 2008 8:59 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: El OutLook me bloquea el envio de correos desde FWH
Replies: 20
Views: 5900

Para evitar los bloqueos del OutLook se podria usar el OutLook-Express con oOutlook:=CreateObject("Outlook.Application"). Ya que este (el OutLook-Express) tiene la opcion de: Menu Herramientas -> Opciones -> Pestaña SEguridad -> Desmarcar la opción: ...
by JmGarcia
Sat May 24, 2008 8:07 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: El OutLook me bloquea el envio de correos desde FWH
Replies: 20
Views: 5900

Antonio, It would be great if we could do this: Define outlook2003 oOutlook of oWnd: Prompts "Customer","Inventory"; Dialogs "Customer","Inventory" I know it is a little unusual since we would be defining a outlook bar from code and dialogs from resources ...
by James Bott
Wed Feb 06, 2008 1:48 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Test2003 uses all CPU
Replies: 10
Views: 2070

Refresh of a Dialog when chang. to Off.2007-Btnbar solved !!

... I dont want a Save-Button. I solved the problem like this 1. I created a hidden button with the function oDlg1:Update() ( oDlg1 is the Child of oOutlook ). 2. When I press one of the Office-Bar-Buttons of the Child, the action at first does a click on the hidden button oBtn0:Click() for the ...
by ukoenig
Thu Jan 31, 2008 6:27 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Refresh of a Dialog when chang. to Off.2007-Btnbar solved !!
Replies: 1
Views: 522
PreviousNext

Return to advanced search