 |
|
 |
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 ...
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
 |
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
|
| Sign In·View Thread·PermaLink | 2.00/5 (1 vote) |
|
|
|
 |
|
|
 |
|
 |
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------
|
| Sign In·View Thread·PermaLink | 1.00/5 (1 vote) |
|
|
|
 |
|
 |
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.
|
| Sign In·View Thread·PermaLink | 1.87/5 (8 votes) |
|
|
|
 |
|
 |
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.
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
 |
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
|
| Sign In·View Thread·PermaLink | 2.00/5 (1 vote) |
|
|
|
 |
|
|
 |
|
 |
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
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
 |
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
|
| Sign In·View Thread·PermaLink | 1.00/5 (3 votes) |
|
|
|
 |
|
 |
Hi, I try use it on evC++ 3, but the workspace is for VC++ 6 ... how can convert this workspace?
Thanks Simone Sanfilippo
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
 |
Just add the files you need to your workspace, most .h files have a corresponding .cpp file which must be included as well.
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
|
 |
|
|
 |
|
|
 |
|
|
 |
|
 |
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>
|
| Sign In·View Thread·PermaLink | 1.33/5 (3 votes) |
|
|
|
 |
|
 |
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
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
 |
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.
|
| Sign In·View Thread·PermaLink | 2.00/5 (1 vote) |
|
|
|
 |
|
 |
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?
|
| Sign In·View Thread·PermaLink | 2.00/5 (2 votes) |
|
|
|
 |
|
 |
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
|
| Sign In·View Thread·PermaLink | 1.33/5 (3 votes) |
|
|
|
 |
|
 |
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) { 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
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
 |
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().
|
| Sign In·View Thread·PermaLink | 2.00/5 (2 votes) |
|
|
|
 |
|
 |
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
|
| Sign In·View Thread·PermaLink | 1.00/5 (2 votes) |
|
|
|
 |
|
 |
I am having trouble with doing a FileInfo, and the file not existing. Basically the program appears to go into a wait, and does not come back with false. I have set my timeouts to 5 seconds, but it does not seem to help.
Anyone have any ideas?
Greg Berlin
|
| Sign In·View Thread·PermaLink | 2.00/5 (1 vote) |
|
|
|
 |