Tagged Questions
The evc4 tag has no wiki summary.
2
votes
1answer
109 views
Porting a Windows-CE application to Windows Desktop
I have taken over a Windows-CE 6.0 application that I would like to port to other platforms. It is a relatively straightforward, self-contained GUI application, written in Embedded C++ Version 4.0
...
1
vote
1answer
540 views
Can StandardSDK 4.0 under EVC++ be used to debug on a remote device?
I'm running Embedded Visual C++ 4 with service pack 4, to develop an application for a device running CE 5.0. I'm using the CE 5.0 SDK for this purpose, which works fine except for the fact that ...
1
vote
1answer
388 views
Making VS 2008 play nice with eVC 4.0 projects
I would like to contribute to an open-source Windows Mobile project, but it's being developed in eVC 4.0, which flat-out does not work on Vista (feel free to correct me!), and I would prefer to avoid ...
1
vote
4answers
1k views
Normal main to WinCE main
I'm porting an existing (mostly) cross-platform application to WinCE 4.2. The current entry point for the function is
int main(int argc, char *argv[]){}
I would like to keep this part as-is, and ...
0
votes
2answers
74 views
After hiding dialog based app on windows mobile platform, user cannot activate it anymore
I am struggling with one problem in Windows Mobile programming (dialog based app).
I have dialog based MFC application. App is created like this:
BOOL MyApp::InitInstance()
{
MainDlg dlg;
...
0
votes
0answers
130 views
Compile eVC project using makefile
I have exported the makefile (.vcn) for my EVC4 projects, and I am running NMAKE to compile them. However, it doesn't seem to get the dependencies right.
When I run this command:
"c:\Program ...
0
votes
0answers
47 views
Help - Error debugging eMbedded Visual C++ DLL on XP
I have DLL with source code that I would like to do debugging. Since it's DLL so I create another project for this DLL project to attach process to it which I followed the suggestion provided by ...
0
votes
1answer
90 views
How to use WINAPI from newer SDK but still using the old SDK in WindowsMobile
Specifically, I want to use Point-to-point Message Queue but because I am still using legacy codes in eVC++ 4 and it only support until PocketPC 2003SE SDK, I cannot find CreateMsgQueue and friends in ...
0
votes
1answer
178 views
Possible to develop “Windows Mobile 6.1” appl. with EVC4 (Embedded Visual C)?
Is it possible to develop "Windows Mobile 6.1" appl. with EVC4 (Embedded Visual C++)?
0
votes
1answer
113 views
How do I find a source code position from an address given by a crash in Window CE
I have a Windows mobile 4.0 application, written using EVC++ 4.0 SP4 with MFC, that is exhibiting a random occasional crash in the field. e.g. Exception ox800000002 at 00112584. It does not happen ...
0
votes
1answer
71 views
Preventing Debug Spam in eVC4
I have an application that I need to debug on a target system.
All the relevant TRACE macros are in place to send messages to the debug window, however, I'm having difficulties in finding a way to ...
0
votes
2answers
1k views
ferror(file) == 32
Sometimes, when I open the a file like so:
FILE *file = fopen(fname, "wb");
if(!file) printf("Error code: %d\n",ferror(file));
I get a result of 32. What does this mean? Specifically, for eMbedded ...
0
votes
0answers
260 views
“A duplicate insert block exists for class xx in the source files”
Anyone seen this?
If so, would you know how to fix it?
In Embedded Visual studios 4. I'm attempting to add a class though the class wizard.
Because the file existed already, the first attempt ...