 |
|
 |
Hello,
The CToken Class work with char * Type
and the inner function : GetNext
use Unicode Function like iswspace
is it Normal ?
thanks to reply.
Tangi Maury
|
|
|
|
 |
|
 |
I am creating an FTP application. But right now not sure about how to get handle to the file on the server to use RecvFile(...).
Thanks ...
|
|
|
|
 |
|
 |
I too have spent all morning trying to port the library to Windows Mobile 5.
I can get it to compile and link. And I can link it into another project. But when I start including the celib.h file - then I get several unresolved external symbol errors for CeAssert.
Any suggestions?
panachepitts
|
|
|
|
 |
|
 |
Does this library work in visual studio 2005?
|
|
|
|
 |
|
 |
Can i use WaitForMultipleObject for pocketpc2003 in embedded vc4.0
i tried but it returns WAIT_FAILED
the code i have tried is
HANDLE hEvents[1];
WaitForMultipleObjects(1, hEvents, FALSE, INFINITE);
-------Thank You Friends--------
By Ramesh A
--------------------------------
------Succcess is our moto------
|
|
|
|
 |
|
 |
It would be nice if you would update this article to support newer versions of eVC++ compilers, such as eVC++ 4.0 for PocketPC 2003. I've been trying all morning and have hundreds of porting problems. I created a whole new DLL without MFC support and copied the source files into that project.
|
|
|
|
 |
|
 |
Just stumbled over a small bug:
char szBuf[128];
for (int ii = 0; ii < 128 && *pchName != _T('0'); pchName++, ii++)
szBuf[ii] = (char) *pchName;
szBuf[ii] = 0;
After the for-loop ii is 128, meaning you are writing zero to the 129th element on the stack.
-> either change szBuf[128] to [129] or ii<128 to ii<128-1 or something.
Just wanted to let you know.
|
|
|
|
 |
|
 |
Hi
I don't want to use ADOCE in my pocketPc. Is there any way handle SQL query and databse manipulation in PocketPC.
Regards
Gopa
|
|
|
|
 |
|
 |
You can try .NET Compact Framework,
It's in Visual Studio 2003 .NET
|
|
|
|
 |
|
 |
I'd like to know how to sort an array of files returned from an ftp server?
CeFileAttrArray attr;
GetFileList(attr,_T("*.zip"));
//now how do I sort attr?
//next line is problemmatic
//qsort(.......) causes access violation ?
has anyone here used the FTP classes here?
Hush,hush...
thought I heard you call my name now.
Kula Shaker.
Amit Dey
Latest articles at CP - Writing Word addins
Office addin
|
|
|
|
 |
|
 |
Hi, I tryed to use the Ftp class, for implementing in my app (on PocketPC 2002) the ftp getfile, but don't work.
Any suggestion?
Thanks
|
|
|
|
 |
|
 |
Hi, I try use it on evC++ 3, but the workspace is for VC++ 6 ... how can convert this workspace?
Thanks
Simone Sanfilippo
|
|
|
|
 |
|
 |
Just add the files you need to your workspace, most .h files have a corresponding .cpp file which must be included as well.
|
|
|
|
 |
|
 |
I had already try this way but I had a much error.
Simone Sanfilippo
Development software Win32 and WinCE
|
|
|
|
 |
|
 |
Can you provide a working sample of the use of the CeVersionInfo class?
|
|
|
|
 |
|
 |
Who knows how to start phone (when totally closed) on PocketPc ?
|
|
|
|
 |
|
|
 |
|
 |
Anyone knows how to transfer files(e.g. jpeg files, gif files, word doc, etc) using wireless communication?
<marquee>Thank you to those who can solve my problem!</marquee>
|
|
|
|
 |
|
 |
Hi,
I want to create an ActiveX control for SmartPhone device and I don't have the ALT libs,incs. I installed the SDK for SmartPhone and they are not included. Could somebody help me?
Thanks in advance
Nick
|
|
|
|
 |
|
 |
Hi, here mr Denis Chelle
from france
I have the same trouble that you. Did you have any response about it? Thanks in advance.
denis.
|
|
|
|
 |
|
 |
1. How to achive the wireless communication on Pocket PC Device?
2. can we have a Prototype which will make a call from the PPC emulation to some phone no. using External modem and TAPI?
|
|
|
|
 |
|
 |
i have problems working with tree viw control en evc++, can't add item for this control and can't handle events such as double click or else... help me please
|
|
|
|
 |
|
 |
CeDbRecord doesn't properly copy over existing CEVT_LPWSTR and CEVT_BLOB values. After copying the properties array, it just shuffles up the data pointed to by the pProps[ii].val.blob.lpb or pProps[ii].val.lpwstr members. These still point to addresses in the old buffer. The pointer arithmetic for LPWSTR's is also not right.
For the LPWSTR case, replace the
if (0 != dwLen)
pProps[ii].val.lpwstr = (WCHAR*) memmove(...)
with something like
if (0 != dwLen)
{
//get offset of data into props structure
long offs = ((LPBYTE)m_pProps[ii].val.lpwstr) - (LPBYTE) m_pProps;
pProps[ii].val.lpwstr = (WCHAR*) memcpy( ((LPBYTE)pProps) + offs + sizeof CEPROPVAL, pProps[ii].val.lpwstr, dwLen);
}
cheers
matt
|
|
|
|
 |
|
 |
I've only used CeArray and CeString, but there are problems in each that might nip you in the butt.
CeString: Format() is not safe! I replaced it with the Format() from MFC CString which calculates the size of the buffer needed before doing a vsprintf.
CeArray: The destructor does not call the destructors for all the elements it contains. This is done in MFC classes with a DestructElements() call. I simply made a new function for CeArray called RemoveAll().
|
|
|
|
 |
|
 |
I have a problem in WinCE..
I could not send document or text to printer in Embedded MFC .
I want to print japanese and arabic character at IrDA printer..
MFC
|
|
|
|
 |