Search found 13 matches: interactivemessage

Return to advanced search

Outlook 2010, problemi nell'invio tramite ole

... Vorrei sapere se qualcuno di voi ha già avuto lo stesso problema ed ha un sistema per bypassarlo. Questa la mia routine di invio: FUNCTION Interactivemessage() paramet cSubject, cBody, aTo, aFiles, lDirectSend,lUseCC,cOrigin LOCAL oOutLook,oMailItem,oRecip,oAttach,i,lOffice,lMailMancante,cVar ...
by Marco Turco
Fri Feb 11, 2011 8:13 am
 
Forum: All products support
Topic: Outlook 2010, problemi nell'invio tramite ole
Replies: 0
Views: 733

Re: Tmail

... (ejemplo testmail). Necasitaría en TEXT mandar varios campos de una base de datos. Para ello he modoifaco el programa como sigue: function InteractiveMessage() local oMail LOCAL cNumSini:=SPACE(18) LOCAL cNumPoliza:=SPACE(15) Use Siniestr cnumSini:=siniestr->Numsini DEFINE MAIL oMail ...
by FiveWiDi
Fri Jan 07, 2011 1:41 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Tmail
Replies: 5
Views: 1504

Tmail

... (ejemplo testmail). Necasitaría en TEXT mandar varios campos de una base de datos. Para ello he modoifaco el programa como sigue: function InteractiveMessage() local oMail LOCAL cNumSini:=SPACE(18) LOCAL cNumPoliza:=SPACE(15) Use Siniestr cnumSini:=siniestr->Numsini DEFINE MAIL oMail ...
by fergonm
Fri Jan 07, 2011 12:24 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Tmail
Replies: 5
Views: 1504

Tmail

... (ejemplo testmail). Necasitaría en TEXT mandar varios campos de una base de datos. Para ello he modoifaco el programa como sigue: function InteractiveMessage() local oMail LOCAL cNumSini:=SPACE(18) LOCAL cNumPoliza:=SPACE(15) Use Siniestr cnumSini:=siniestr->Numsini DEFINE MAIL oMail ...
by fergonm
Fri Jan 07, 2011 12:24 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Tmail
Replies: 0
Views: 334

Re: Email through outlook

... will use Outlook via OLE if available otherwise the default mail client. #include "FiveWin.ch" #include "Mail.ch" FUNCTION Interactivemessage() paramet cSubject, cBody, aTo, aFiles, lDirectSend,lUseCC LOCAL oOutLook,oMailItem,oRecip,oAttach,i,lOffice,lMailMancante,cVar local ...
by Marco Turco
Tue Oct 27, 2009 12:40 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Email through outlook
Replies: 7
Views: 1323

Re: FASTREPORT - MAILExport

... "PrintOptimized", .t.) FrPrn:DoExport("PDFExport") aFiles:={} aadd(aFiles,{cFile,cFile}) InteractiveMessage("","","",aFiles,.f.) return("") FUNCTION Interactivemessage() paramet cSubject, cBody, aTo, ...
by Marco Turco
Sat Aug 29, 2009 3:05 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FASTREPORT - MAILExport
Replies: 3
Views: 1106

TMail Class opens a modal window- how to change?

I tried testmail.prg from the FIVEWIN samples.
InteractiveMessage opens a modal WINDOW and
you can’t put it to the taskbar.
Is it possible to change this ?

Thanks in advance
Otto
by Otto
Thu Nov 27, 2008 6:38 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: TMail Class opens a modal window- how to change?
Replies: 0
Views: 309

... ACTION (MAPILogOff(), MsgInfo("LogOff realizado") ); MESSAGE "LogOff del sistema de correo" TOOLTIP "LogOff" DEFINE BUTTON OF oBar GROUP; ACTION InteractiveMessage(); MESSAGE "Enviar mensaje interactivo" TOOLTIP "Interactive" DEFINE BUTTON OF oBar GROUP; ACTION DirectMessage(); MESSAGE "Enviar ...
by Armando
Wed Sep 26, 2007 6:19 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: TSMTP : Envio de correo con dominio diferente
Replies: 11
Views: 2412

... is installed otherwise I use the MAPI subset system. You can make this using this function: #include "FiveWin.ch" #include "Mail.ch" FUNCTION Interactivemessage() paramet cSubject, cBody, aTo, aFiles, lDirectSend LOCAL oOutLook,oMailItem,oRecip,oAttach,i if lDirectSend=NIL lDirectSend:=.f. ...
by Marco Turco
Fri Mar 17, 2006 8:22 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: MAPI and Outlook 2003
Replies: 28
Views: 10660

... local cSubject,cBody,aTo,aFiles cSubject:="Send an email through Outlook 2003" cBody:="Text of mail." aTo:={"info@softwarexp.co.uk"} aFiles:={} InteractiveMessage(cSubject,cBody,aTo,aFiles) return nil function InteractiveMessage(cSubject,cBody,aTo,aFiles) local oMail local aFileAttach := {} ...
by Gale FORd
Tue Jan 24, 2006 5:14 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: MAPI and Outlook 2003
Replies: 28
Views: 10660

... cSubject:="Send an email through Outlook 2003" cBody:="Text of mail." aTo:=array(0,2) aadd(aTo,{"marco","info@softwarexp.co.uk"}) aFiles:={} InteractiveMessage(cSubject,cBody,aTo,aFiles) return nil function InteractiveMessage() paramet cSubject,cBody,aTo,aFiles local oMail oMail:=tMail():New( ...
by Marco Turco
Tue Jan 24, 2006 2:16 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: MAPI and Outlook 2003
Replies: 28
Views: 10660

MAPI and Outlook 2003

... that show the problem. Thanks in advance. Best Regards Marco Turco ************************ #include "FiveWin.ch" #include "Mail.ch" function InteractiveMessage() paramet cSubject,cBody,aFrom,aFiles local oMail for i:=1 to len(aFrom) aFrom[i,1]:=alltrim(aFrom[i,2]) aFrom[i,2]:=alltrim(aFrom[i,2]) ...
by Marco Turco
Mon Jan 23, 2006 10:14 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: MAPI and Outlook 2003
Replies: 28
Views: 10660

Problema con MAPI e Outlook 2003

... Outlook Express o Eudora. Qualche idea ? Grazie in anticipo Marco Turco ************************ #include "FiveWin.ch" #include "Mail.ch" function InteractiveMessage() paramet cSubject,cBody,aFrom,aFiles local oMail for i:=1 to len(aFrom) aFrom[i,1]:=alltrim(aFrom[i,2]) aFrom[i,2]:=alltrim(aFrom[i,2]) ...
by Marco Turco
Sat Jan 21, 2006 10:46 am
 
Forum: All products support
Topic: Problema con MAPI e Outlook 2003
Replies: 1
Views: 1327

Return to advanced search