Search found 299 matches: mapi

Return to advanced search

... of having Outlook show the address book? You could do the whole message (including To, CC, BCC ) with a FWH dialog then just send the message via MAPI. This would give you complete control. You could provide a list of contacts either from your own FW database or from the Outlook address book via ...
by James Bott
Wed May 16, 2007 10:24 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Outlook 2003 and TOleAuto... need some tips
Replies: 4
Views: 1075

How get message from dbx (Outlook Express)

... oOL := TOleAuto():New( "Outlook.Application" ) lOutlookOK := .T. IF ! lOutlookOK RETURN ( 0 ) ENDIF oNameSpace = oOL:Get( "GetNameSpace", "MAPI" ) oContacts = oNameSpace:Get( "GetDefaultFolder", "6" ) // 6 = Inbox-Folder FOR nContador = 1 TO oContacts:ITEMS:Count() oNewContact = oContacts:ITEMS( ...
by Romeo
Mon Apr 30, 2007 10:57 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How get message from dbx (Outlook Express)
Replies: 6
Views: 1861

... Code: oOL := TOleAuto():New( "Outlook.Application" ) lOutlookOK := .T. IF ! lOutlookOK RETURN ( 0 ) ENDIF oNameSpace = oOL:Get( "GetNameSpace", "MAPI" ) oContacts = oNameSpace:Get( "GetDefaultFolder", "6" ) // 6 = Inbox-Folder FOR nContador = 1 TO oContacts:ITEMS:Count() oNewContact = oContacts:ITEMS( ...
by Romeo
Thu Apr 19, 2007 9:50 am
 
Forum: All products support
Topic: Come beccare i messaggi da un file DBX di Outlook Express
Replies: 16
Views: 5396

... #define olFolderInbox 6 FUNCTION MAIN() LOCAL oOutlook := CREATEOBJECT( "Outlook.Application" ) LOCAL oNameSpace := oOutlook:GetNameSpace("MAPI") LOCAL oInbox := oNameSpace:GetDefaultFolder( olFolderInbox ) LOCAL i FOR i = 1 TO oInbox:Items:Count ? oInbox:Items[ i ]:Body ? NEXT oOutlook:Quit() ...
by Romeo
Thu Apr 19, 2007 8:57 am
 
Forum: All products support
Topic: Come beccare i messaggi da un file DBX di Outlook Express
Replies: 16
Views: 5396

CODE SAMPLE: Here is Microsoft MAPI support with OCX

Code complete: // FiveWin OLE support demo // Using Microsoft MAPI Control // By Rochinha - Brazil #include "FiveWin.ch" #define SESSION_SIGNON 1 #define MESSAGE_COMPOSE 6 #define ATTACHTYPE_DATA 0 #define RECIPTYPE_TO 1 #define RECIPTYPE_CC ...
by Rochinha
Fri Mar 09, 2007 2:55 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: CODE SAMPLE: Here is Microsoft MAPI support with OCX
Replies: 7
Views: 5180

MAPI

Hi,

It's nothing major. The default behaviour of the list of recipients for MapiSendMail, is to use the first one as the to address, and the rest as cc recipients.

If you recompile mapi.c with KOCUM defined, each recipient array gets a third element specifying type (to, cc or bcc)

Alex
by AlexSchaft
Wed Feb 28, 2007 7:43 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Recompiling mapi.c
Replies: 11
Views: 4319

Recompiling mapi.c

Hi, I'm trying to recompile mapi.c to use the extensions from Michael Kocum using xHarbour builder (#define KOCUM), but can't seem to get it to compile, do to function definition clashes xcc.exe -Fo"xobj\mapi.obj" -D __HARBOUR__ -D __FLAT__ ...
by AlexSchaft
Wed Feb 28, 2007 9:39 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Recompiling mapi.c
Replies: 11
Views: 4319

Norbert,

With MAPI and OE this is what I found.

If the attachment file is html (has a .htm or .html extension) and you do not specify any TEXT (a message) then the file will appear in the message area.


I have not tried this with Outlook.

James
by James Bott
Thu Feb 15, 2007 9:59 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: tMail() and RichText (RTF)
Replies: 4
Views: 1342

... // From { cTo, cFrom },; // To cText ,; // Msg Text cAsunto ,; // Subject { cAdjunto } ) // attached files Via OutLook ( o MAPI ) DEFINE MAIL oMail ; SUBJECT cAsunto ; TEXT cText ; FROM USER ; FILES cAdjunto, cFile ; TO cTo ; RECEIPT ACTIVATE MAIL oMail Saludos
by dbzap
Fri Dec 15, 2006 1:27 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: É possível enviar EMAIL com o FWH?
Replies: 1
Views: 657

... uso de ActiveX en Windows, hay algo similar para OSX, ? De momento no lo sabemos. > 4.- Los usos como de las dll's de windows como son sockets,mapi, ftp;s, etc,etc , cuales son las contrapartes en OSX ? > Estamos estudiando toda la información posible de OSX. En cuanto vayamos descubriendo ...
by Antonio Linares
Mon Nov 06, 2006 10:46 am
 
Forum: FiveMac / FivePhone (iPhone, iPad)
Topic: FiveMac - first screenshots
Replies: 51
Views: 48442

... trae vs xharbour ? 3.- El uso de ActiveX en Windows, hay algo similar para OSX, ? 4.- Los usos como de las dll's de windows como son sockets,mapi, ftp;s, etc,etc , cuales son las contrapartes en OSX ? Por utimo .... Felicidades y como siempre, a probar estos productos. Saludos Osvaldo Ramirez
by ramirezosvaldo
Mon Nov 06, 2006 12:08 am
 
Forum: FiveMac / FivePhone (iPhone, iPad)
Topic: FiveMac - first screenshots
Replies: 51
Views: 48442

Amiguinho If Incredimail use MAPI you can try this: local oMail DEFINE MAIL oMail ; SUBJECT "FiveWin Mail-control power" ; FILES "c:\test.doc", "test.doc"; TEXT "This is real xBase power at ...
by Rochinha
Thu Oct 05, 2006 12:28 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: TOle com IncrediMail ?
Replies: 5
Views: 1359

... But if I generate a message from FWH with the RECEIPT clause the message does not contain the line. So, there is either a bug in MAPI, OE, or in FW's mapi.c module. Antonio, any ideas? James
by James Bott
Thu Sep 21, 2006 10:37 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: DEFINE MAIL
Replies: 4
Views: 973

... message. Once you fix the Outlook bug, then maybe this will be solved too. If you have another computer around you might try tesing the Fivewin MAPI email code on it too. James
by James Bott
Wed Sep 06, 2006 7:16 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xHarbour Builder + FivewinH with Outlook Office 2003
Replies: 8
Views: 3102

George,

If you use the FROM USER clause does the Outlook new message dialog come up? If not perhaps Outlook is not set as the default MAPI client.

James
by James Bott
Wed Sep 06, 2006 2:30 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xHarbour Builder + FivewinH with Outlook Office 2003
Replies: 8
Views: 3102
PreviousNext

Return to advanced search

cron