Search found 61 matches: ooutlook

Return to advanced search

Re: Mapi Outlook .. send mail silently

... , it is in silent mode . Good luk and marry Christmas . Philippe #include "fivewin.ch" function main() local oOutLook,oMailItem oOutLook := TOleAuto():New("Outlook.Application") oMailItem := oOutLook:Invoke("CreateItem", 0) oMailitem:to:="ph.jacquet@skynet.be" ...
by Jack
Fri Dec 20, 2019 9:24 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Mapi Outlook .. send mail silently
Replies: 15
Views: 2511

Fivewin OLE with Outlook

All, I have been using Fivewin to bring up Outlook from 2010 using either of the following functions: Function GetOutlookObject() Local oOutlook := Win_OleGetActiveObject( "Outlook.application" ) If oOutlook == nil oOutlook := Win_OleCreateObject( "Outlook.application" ...
by byron.hopp
Thu Oct 03, 2019 3:32 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Fivewin OLE with Outlook
Replies: 7
Views: 1136

Re: Email problem

Here is my code : TRY oOutLook := GetActiveObject( "Outlook.application" ) MsgWait("Outlook al open !","Info",2) CATCH TRY oOutLook := CreateObject( "Outlook.application" ) MsgWait("Ouverture ...
by Jack
Tue Mar 06, 2018 5:16 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Email problem
Replies: 2
Views: 808

Control de aplicaciones

Hola, una duda en el manejo de aplicacones, uso local oOutlook := CreateObject( "Outlook.Application" ) en caso de no estar instalado outlook o no este abierto en la pc que se corre el programa, me saca y manda error: Error description: Error ...
by servicomver
Tue Dec 13, 2016 3:55 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Control de aplicaciones
Replies: 2
Views: 522

Error TOleAuto():New("Outlook.Application")

Tengo instalado Outlook 2010 en un equipo con win7 64bit y estoy obteniendo este error: oOutLook := TOleAuto():New("Outlook.Application") Error description: Error TOleAuto/-1 CO_E_CLASSSTRING: TOLEAUTO:NEW Args: [ 1] = C Outlook.Application ¿Pudiera ser por ...
by Manuel Aranda
Sun Mar 20, 2016 12:49 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Error TOleAuto():New("Outlook.Application")
Replies: 0
Views: 318

Re: TOutlook2010 and Message Bar are not support UNICODE

Dutch,

Just to check that your changes are ok, please do this after creating the OutLook object:

MsgInfo( oOutLook:lUnicode )
by Antonio Linares
Wed Sep 30, 2015 7:52 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: TOutlook2010 and Message Bar are not support UNICODE
Replies: 24
Views: 4919

Re: Outlook.Application

try this

TRY
oOutlook = GetActiveObject( "Outlook.Application" )
CATCH
TRY
oOutlook = CreateObject( "Outlook.Application" )
CATCH oerr
// LOUTLOOK := .F.
END
END


Hth
by Richard Chidiak
Fri Jan 16, 2015 6:31 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Outlook.Application
Replies: 5
Views: 780

Por favor ayuda con prueba de OLE

Puedes probar este código (sólo si tienes Outlook instalado en tu ordenador) ? local oOutlook := CreateObject( "Outlook.Application" ) local oMailItem := oOutlook:CreateItem( 0 ) oMailItem:Subject = "Test" oMailItem:Recipients:Add( "test@gmail.com" ...
by Antonio Linares
Sun Dec 14, 2014 5:41 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Por favor ayuda con prueba de OLE
Replies: 8
Views: 1031

Please help with OLE test

Could you please test this code (only if you have Outlook installed on your computer) ? local oOutlook := CreateObject( "Outlook.Application" ) local oMailItem := oOutlook:CreateItem( 0 ) oMailItem:Subject = "Test" oMailItem:Recipients:Add( "test@gmail.com" ...
by Antonio Linares
Sun Dec 14, 2014 5:40 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Please help with OLE test
Replies: 12
Views: 2250

Uso de Outlook

... (son facturas electronicas), el caso es que ha determinado tiempo ya no ejecuta el outlook, mi duda es la siguiente al crear el objeto local oOutlook := CreateObject( "Outlook.Application" ) debo crearlo solo una vez al iniciar el programa ???, o cada vez que envie un correo ?? ...
by servicomver
Thu Oct 16, 2014 6:42 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Uso de Outlook
Replies: 3
Views: 670

Re: Always about Outlook and OLE

Yes, tried with this code but the email is Always sent using the default Outlook account. oOutLook := TOleAuto():New("Outlook.Application") oMailItem := oOutLook:CreateItem( 0 ) oMailItem:SendUsingAccount := "xxxx@yyy.zzz" oRecip := oMailItem:Recipients ...
by Marco Turco
Fri Jun 13, 2014 10:20 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Always about Outlook and OLE
Replies: 6
Views: 1266

Always about Outlook and OLE

... using the mary@softwarexp.co.uk account ? Using the following code, the email is sent always using the default account (nick@softwarexp.co.uk) oOutLook := TOleAuto():New("Outlook.Application") oMailItem := oOutLook:CreateItem( 0 ) oRecip := oMailItem:Recipients Thank you in advance
by Marco Turco
Tue Jun 10, 2014 9:49 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Always about Outlook and OLE
Replies: 6
Views: 1266

Outlook via ole

... problem is that it needs Outlook already executed to run. Do you have a ole code that open Outlook in case it isn't running ? thank you **** TRY oOutLook := TOleAuto():New("Outlook.Application") oMailItem := oOutLook:CreateItem( 0 ) oRecip := oMailItem:Recipients CATCH MsgStop("Outlook ...
by Marco Turco
Tue Jun 10, 2014 9:44 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Outlook via ole
Replies: 0
Views: 285

Createitem() in Outlook on Microsoft Exchange

Hello, I use "oOutlook:Createitem(1)" to create a new item in the calendar of Outlook. The item is sended to the standard calender in Outlook. But now I'm using Microsoft Exchange and I want to sent an item to a calendar ...
by driessen
Tue Nov 19, 2013 10:10 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Createitem() in Outlook on Microsoft Exchange
Replies: 2
Views: 630

Re: Open a msg file

Otto,

It seems as you have not posted all your code there, as I see this in the errors: OOUTLOOK.xns used as an include file.

What is there in such file ? Is it used ?
by Antonio Linares
Tue Jun 25, 2013 2:37 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Open a msg file
Replies: 3
Views: 868
Next

Return to advanced search