Search found 8 matches: mapilogoff

Return to advanced search

Re: OT: MAPI -- Why it sometimes work, and sometimes doesn't ?

Tim, I see another issue with your code. You need to do: oMail:end() At the end of your routine. The End() method calls MapiLogoff(), so this may be significant. It could create a memory issue, or a CDO issue. METHOD End() INLINE MAPILogOff() No, it is not required. A MAPI session ...
by Enrico Maria Giordano
Mon Jun 12, 2017 9:56 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: OT: MAPI -- Why it sometimes work, and sometimes doesn't ?
Replies: 7
Views: 1878

Re: OT: MAPI -- Why it sometimes work, and sometimes doesn't ?

Tim, I see another issue with your code. You need to do: oMail:end() At the end of your routine. The End() method calls MapiLogoff(), so this may be significant. It could create a memory issue, or a CDO issue. METHOD End() INLINE MAPILogOff() I suggest fixing that and declaring oMail ...
by James Bott
Sun Jun 11, 2017 8:11 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: OT: MAPI -- Why it sometimes work, and sometimes doesn't ?
Replies: 7
Views: 1878

Re: Compiling with minigw

Antonio

in your make the problems are :
hdirc=$(hdir)\bin\harbour.exe
you have to change in
hdirc=$(hdir)\bin


in the FWH LIB for minigw missing some function :
TWEBCAM()
MAPILOGOFF()
MAPISENDMAIL()

Thanks MAurizo
by Maurizio
Thu Jul 19, 2012 4:16 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Compiling with minigw
Replies: 12
Views: 5878

... OF oWnd DEFINE BUTTON OF oBar ACTION MsgInfo(MAPILogOn()); MESSAGE "LogOn al sistema de correo" TOOLTIP "LogOn" DEFINE BUTTON OF oBar; ACTION (MAPILogOff(), MsgInfo("LogOff realizado") ); MESSAGE "LogOff del sistema de correo" TOOLTIP "LogOff" DEFINE BUTTON OF oBar GROUP; ACTION InteractiveMessage(); ...
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: 2413

Antonio Acabo de ordenar e instalar xHB 99.70, el tutor01.prg já me arranca, agora o meu projeto apresenta estes erros : xLINK: error: Unresolved external symbol '_HB_FUN_PEEKBYTE'. xLINK: error: Unresolved external symbol '_HB_FUN__LASTKEY'. xLINK: error: Unresolved external symbol '_HB_FUN_ISWIN64...
by saviotti
Thu May 17, 2007 6:57 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Error ao atualizar para FWH 7.04
Replies: 29
Views: 9856

Problems with sending emails - some questions

... ; FILES TabAtt,"" ; TEXT FmText FROM USER oOutMail:aRecipients := {{ALLTRIM(LOWER(cEmail[i])),""}} ACTIVATE MAIL oOutMail RC := oOutMail:nRetCode MapiLogOff() ---------------------------------------------- My email is transferred to Outlook which shows my email once again. After I have clicked ...
by driessen
Sun Feb 18, 2007 11:03 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problems with sending emails - some questions
Replies: 15
Views: 6992

mapi

Hi all, When using tMail class as in FWH 2.7 sample james.prg with xHB Builder i get the following errors: xLINK: error: Unresolved external symbol '_HB_FUN_MAPILOGOFF'. xLINK: error: Unresolved external symbol '_HB_FUN_MAPISENDMAIL'. xLINK: fatal error: 2 unresolved external(s). Do i miss some libr...
by Detlef Hoefner
Tue Jun 13, 2006 8:05 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: mapi
Replies: 6
Views: 1612

... ELSEIF nRetCode = 1 * MsgStop("Operation Cancelled!", "Problem") ELSEIF nRetCode <> 0 MsgStop(nRetCode, "Problem - MAPI Return Code") ENDIF MAPILogOff() return nil
by Randal
Tue Feb 28, 2006 11:43 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: MAPI and Outlook 2003
Replies: 28
Views: 10662

Return to advanced search