1
vote
1answer
48 views

Porting multithreaded window ce app to win32

I am trying to do the opposite of the usual. We have a legacy WinCE app which now needs to be ported to the Win32 platform, so that it can work as a simulator of the actual app. I have managed to ...
1
vote
0answers
85 views

USB Device Detection in WinCE 6.0 Device using MFC

Can anyone please help me how to detect USB Device Connected to WinCE 6.0 Device and send some data to the same? What i want is, Check if any USB Device is Connected to the WinCE 6.0 Device and send ...
0
votes
1answer
185 views

What is the difference between ON_WM_CTLCOLOR_REFLECT() and ON_WM_CTLCOLOR() in VS2008?

The question is like this: I write a windows application in VS2005, building success. Then I transfer it to VS2008, when I build the program, there will be an error messsage shows: error C4867: ...
2
votes
1answer
204 views

How to Generate a text file in WinCE 6.0 application using MFC?

I am trying to create a text file through my code. The file is created but its extension is different(not .txt). Then on searching i came to know that this can be because of MFC runtimes. I ...
1
vote
0answers
156 views

Reading DEVMODE structure from Registry

I am working on a project where I need to program for print operations from device. It has WIN CE 6.0. I am using Visual Studio 2005 (MFC). The printer can be any PCL-compatible printer. Currently, ...
0
votes
1answer
154 views

Failed to assign an Ansi char array to MFC CStringW

I have an Ansi char array like and want to initialize a CStringW (WCHAR specialization of CString template). But the CString object does not have copy the chars from the array. CStringW sSample = ...
0
votes
1answer
147 views

Track mouse over event in Windows CE

How to track the Mouse Over event while moving Mouse over Menu or some other window? I have tried TrackMouseEvent, But it's not supported by Win CE. Is there any other way?
0
votes
2answers
384 views

Windows CE 6 remote debugging. No call stack when pause program

I am using Visual Studio 2008 for a remote debugging session with WindowsCE 6.0. When I click 'Pause' I cannot see the program call stack. Instead of a call stack with any functions of my program I ...
0
votes
3answers
660 views

How do I set order of moving between Windows controls created at runtime?

We have a series of dialogs in our application for which the dialog template defines 4 buttons along the bottom of the screen. However (depending which version of our hardware the application is ...
5
votes
4answers
171 views

Blit() Performance dependent on screen rotation

I am developing an application for a WinCE 6.0 device in which there is a need to rotate the screen, so we are using the typical ChangeDisplaySettingsEx() API. and also I am drawing something on the ...
4
votes
1answer
298 views

Need information about using Inline Assembly for WinCE, ARM9

I am not very good in inline assembly, but planning to use it for optimization purpose in an Embedded project. As I don't know much of the information about it, I am in need of some help. I am having ...
1
vote
2answers
1k views

Looking for code sample on creating C++ DLL then P/Invoke in C# (For Windows CE 5/6)

I am experienced in C# but not in C++. Recently my Windows CE 5 C# program is hitting performance issue and I am considering moving calculation to C++ DLL then P/Invoke it from C# since C++ supports ...
0
votes
1answer
584 views

MFC/WinCE: CPropertySheet: first property page uninitialized and buttons not working

I'm maintaining an MFC app on Windows CE 6. The app contains a customized property sheet containing 6 property pages. Every page is initialized in OnInitDialog (controls are populated) and contains 2 ...
0
votes
1answer
58 views

Rolling the File in windows using API

How to do file rolling in windows depending upon size? I know that log4net and log4cxx does this but I want to do this for another purpose so is there any API available there in windows? Thanks, Omky ...
0
votes
1answer
236 views

how to launch Print dialog from application as like from word pad in wince

I am trying to launch default print dialog from application , but it is not coming up. I am able to launc print dialog from wordpad application it is also printing the decument but, when i am trying ...
0
votes
1answer
90 views

Unable to link mgprint.lib in wince6.0 application

I am trying to print text from MFC application, developed by using custom SDK of OSDesign. I am using StartDoc() and EndDoc() API calls in my application, but I didn't find the declaration of these ...
1
vote
1answer
338 views

C++/MFC How to copy multiple files from PC to WinCE (Mobile Device)?

I am trying to copy entire directory including all the files and subdirectories inside from PC into WinCE (Mobile Device). I am aware of the RAPI.DLL to control files within WinCE, but I doesn't seem ...
1
vote
2answers
837 views

How to add image in CTreeCtrl list in MFC

I am trying to add Image before the text in CTreeList control but it is not coming up, But what i observed is the the node name is started after some space , like it is leaving the space for bitmap , ...
0
votes
3answers
242 views

To restrict ShowWindow() of dialog

i have one dialog box in MFC(Wince platform),and one list box over it. I need to spawn a thread after dialog box become visible. But some times it seems like the thread is started before complete ...
1
vote
1answer
470 views

How can I assign RGB color codes to a WORD?

I am assigning the color values to the display frame buffer, and that buffer pointer return type is BYTE. But i am not able to assign the RGB color value into it. This i am doing to set the pixel ...
0
votes
1answer
343 views

Writing on Hyper terminal using WinCE device

ia m trying to read/ write on hyper terminal using winCE device. iam able to write the data on Terminal from device but not able to read the data from terminal to device. Even afer writing on terminal ...
1
vote
2answers
566 views

Alternate of rename() and remove() in C++

i am trying to implement same fucntionality for File rename() and remove() for my winCE device. but i guess the these function are not there in wince. as its there in cstdio header for C++. Please ...
0
votes
2answers
1k views

how to solve #error : Must define a target architecture in wince mfc application?

how to solve #error : Must define a target architecture in wince mfc application?i got to know that we need to use device header and libraries but how can i use that?
0
votes
4answers
462 views

Alternate for MoveTo and LineTo in Windows CE, MFC

Hi i am working on some high resolution display features in which have to draw the vertical line , i am using Moveto() and lineTO() , but it is much time taking... can anyone suggest me , what we can ...
0
votes
1answer
425 views

How can drawing routines be optimized to achieve the maximum refresh rate in Windows CE?

In my application i am drawing some set of lines (like a vertical graph), and the refresh rate will be around 30 times in a second. I have calculated the performance and it is taking 400 milliseconds ...
0
votes
1answer
382 views

How to write an alarm program windows mobile app where the time is set by user,,,,,,

i'm trying to write an alarm program for PocketPc 6 emulator and for wince 6.0 ,,,,where the alarm time is set by user and at that pirticular time the win mobile has to give some alert message,,,,, i ...
1
vote
1answer
517 views

How to decode a Base64 encoded image string and how to display that bitmap after decoding in MFC — WinCE PocketPc application

Hi i'm trying to develop a WinCE Pocket PC application i have to take bitmap images from an SQL server from a web service in base64 encoded data and i want to decode that base64 encoded string and ...
1
vote
1answer
192 views

PRINTDLG OR PAGESETUPDLG

i am trying to launch Printdlg() in my wince device but it is showing me linking error while building . this is the way i am doing it.. /// using pagesetupdlg.... PAGESETUPDLG info; ...
1
vote
1answer
169 views

Custom FileDialog in WinCE 6.0

I am newbie in WinCE Programming, i want to Create Custom File Dialog for our application, which has totally diffrent look and feel than the default windows file dialog.... I looked into many Flag ...
1
vote
1answer
356 views

Customize Title Bar (Colored,Text,icon etc) in dialogBox foe WinCE 6.0

Hey i am new bie in winCE and working on 6.0 version, is there anyway to change the look and feel of dialog title bar in wince , i have tried with WM_NCPAINT message but it is not there in wince.... ...
1
vote
1answer
921 views

Datatype misalignment exception(0xA0000002) on ARM processor

My application runs well on HTC HD2 which has Qualcomm 1GHz Snapdragon processor but when try to run on Windows professional emulator 6 or PIDION which has ARM processor, it crashes with datatype ...
0
votes
1answer
644 views

How to create a Minimize button in WinCE dialog based application

I created a WinCE dialog based application. I want to add minimize option at the top right corner. If i create an MFC dialog based application, a checkbox will be present for Minimize button asking ...
0
votes
1answer
181 views

Is there any macro to differentiate between WinCE emulator and WinCE device?

I need to perform some file operations on WinCE platform. The paths of file differ in Device compared to Emulator. So i need to choose file according to the environment, like below. #if ...
0
votes
2answers
515 views

MFC Controls are getting disappeared after scrolling

I am working on dialog based MFC application in WinCE. I created few controls in a dialog and scrolled down. When i scroll up again, the controls in the first screen got disappeared. Controls ...
0
votes
0answers
141 views

how to add button on property sheets in mfc in winc [closed]

when i add button on property sheets in mfc it working properly but when i load to device its crashing.i am working on winc.any clue:(?
0
votes
1answer
298 views

how can i color titlebar in mfc in winc

i am trying to change color of titlebar but as onncpaint is not supported by winc what to do to color non client area like title bar?
0
votes
1answer
70 views

How to save datetime in EDB database

I want to save datetime into the EDB database. I tried storing the value by converting CTime to CString. But after reading not able to convert CString to Ctime. Ask the same question on stackoverflow, ...
0
votes
1answer
666 views

Positioning the dialog box in the centre of the screen

I have a dialog box developed in mfc for a Windows CE device and want it to occupy the entire screen. I used the following code to center my dialog box on the lcd screen of the device: CWnd* pWnd = ...
0
votes
0answers
203 views

How to use DirectShow (dshow) to play files on WinCE device

I need to write a GUI application that will play media files on my WinCE device. I've checked the catalog files for the OS design I'm working with and found a dshow folder under src. This has a ...
1
vote
0answers
647 views

How to create a drop down menu in MFC for WINCE

I have the following code in a win32 app that shows a drop down menu on clicking a button. However, this does not work in WinCE as MENUINFO is not defined. Is there any way I can get around this? I ...
0
votes
2answers
514 views

Trace the function implemented by DeviceioControl

I am working with a WinCE device which has a radio manager driver written for it in MFC. In the code for the Radio GUI, I can see the function Deviceiocontrol with a specific IOCTL being called. ...
0
votes
1answer
472 views

createthread in WinCE

I have this code written in MFC as a win32 application: CZoneThread* pThread = new CZoneThread( sZoneInfo ); pThread->CreateThread(); Here, CZoneThread is another class. Will this code work ...
1
vote
1answer
775 views

GetPrivateProfileString function for MFC application in Win CE

I understand that WinCE does not support the above function. However as it has been used in the code I am trying to port to Win CE environment, I am trying to rewrite the function to work in Win CE. ...
0
votes
1answer
111 views

Placing a window in WIN CE

How do we specify the placement position of a window using MFC in Win CE? It does not support the WINDOWPLACEMENT class that is available in Windows.
0
votes
1answer
268 views

Porting a win32 application to Win CE

I have a win32 GUI (MFC) application which I need to port to a WIN CE environment. I keep encountering undefined identifiers. What is the best way to deal with this- is there some site where i can get ...
1
vote
1answer
773 views

“Use MFC in a Static Library” links to MFC80U.dll

In my Windows CE DLL project, I am trying to tell Visual C++ to link statically to MFC in a project that originally did not use MFC. However, upon linking successfully, Dependency Walker (depends.exe) ...
2
votes
2answers
1k views

Scrolling Dialog in MFC on Win CE / Windows Mobile

I'm building a dialog based Windows Mobile application. My main container dialog has a tab control which alternates between different child dialogs (as separate tab sheets). As I have limited display ...
0
votes
3answers
1k views

Windows Mobile/Pocket PC: How do I change the border color of focused/unfocused CEdit, CListCntl, CButton in MFC or Win32

How do I change the border color of focused/unfocused CEdit, CListCntl, CButton in WinCE/Windows Mobile 5/6 with MFC or Win32 API?
0
votes
2answers
759 views

Moving between dialog controls in Windows Mobile without the tab key

I have a windows mobile 5.0 app, written in C++ MFC, with lots of dialogs. One of the devices I'm currently targetting does not have a tab key, so I would like to use another key to move between ...
0
votes
1answer
802 views

Using PostMessage in Windows Mobile to simulate a menu pick

I'm writing a routine to provide user definable keyboard short-cuts for any menu item in my Windows Mobile 5 application, which is in C++/MFC. To do this I am getting all of the available menu ...