How can read the entire list of contacts
in wm5 / 6 with FWPPC
Thanks in advance
How can read the entire list of contacts
in wm5 / 6 with FWPPC
Thanks in advance
#include "fwce.CH"
function Main()
MsgInfo( ValType( CreateObject( "PocketOutlook.Application" ) ) )
return nilbuildce poutlook
Creating library poutlook.lib and object poutlook.exp
poutlook.obj : error LNK2001: unresolved external symbol HB_FUN_CREATEOBJECT
poutlook.exe : fatal error LNK1120: 1 unresolved externals
You have to link this library:
EXCUSE ME, NOW MI FROM THIS ERROR
poutlook.c
hbw32.lib(w32ole.obj) : error LNK2005: HB_FUN_ANSITOWIDE already defined in Five
CEC.lib(FWCE.obj)
hbw32.lib(w32ole.obj) : error LNK2005: HB_FUN_WIDETOANSI already defined in Five
CEC.lib(FWCE.obj)
hbw32.lib(w32ole.obj) : warning LNK4006: HB_FUN_ANSITOWIDE already defined in Fi
veCEC.lib(FWCE.obj); second definition ignored
hbw32.lib(w32ole.obj) : warning LNK4006: HB_FUN_WIDETOANSI already defined in Fi
veCEC.lib(FWCE.obj); second definition ignored
Creating library poutlook.lib and object poutlook.exp
poutlook.exe : fatal error LNK1169: one or more multiply defined Symbols found
MI YOU CAN HELP?
now with that lib [hbw32.lib] me from error as from post above, does it serve me a system to read all the contacts of the ppc and can to put them in a chart dbf point out me how to do with FWPPC?
thanks thousand
We email you some new files
grazie mille
adesso non mi da errore in compilazione,
pero non riesco a leggere i contatti da poutlook
hai qualche esempio?
questo non funziona
thanks thousand now not me from error in compilation, however don't I succeed in reading the poutlook contacts you have some example?
this doesn't work
function Main()
local pOLA
local pContact
local pItems
local olFolderContacts := 10
pOLA=CreateObject( "PocketOutlook.Application" )
pContact=CreateObject( "PocketOutlook.ContactItem" )
pItems=CreateObject( "PocketOutlook.Items" )
pItems = pOLA.GetDefaultFolder(olFolderContacts).Items
For i = 1 To pItems.Count
pContact = pItems.Item(i)
msginfo(pContact.FileAs)
Next i
return nil
If you get an error on this line:
MsgInfo( ValType( CreateObject( "PocketOutlook.Application" ) ) )
then it means that PocketOutlook is not available (not installed?)
Maybe we need to use ADOCE to read the contacts database.
where I find ADOCE to give it a try?
Antonio Linares wrote:#include "fwce.CH" function Main() MsgInfo( ValType( CreateObject( "PocketOutlook.Application" ) ) ) return nil
Ese objeto no esta disponible, por eso no se puede crear el objeto OLE y de ahi el error.
Parece que existe una libreria para leer los ficheros PST directamente:
http://freshmeat.net/projects/libpst/?topic_id=31
Ahora hay que revisar el codigo fuente, que es abierto:
Accediendo a los contactos usando C#:
http://www.codeguru.com/csharp/csharp/c ... php/c10773
Posiblemente podamos adaptarlo a FWPPC
Unfortunately Microsoft.WindowsMobile.PocketOutlook is not supported on PPC 2003 SE, it is supported in Windows Mobile 5.0 and higher versions only.