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 while it will target my device (i.e. an SH4 based PDA), it will not let me select anything other than the StandardSDK emulator for debugging. If I go to Tools / Configure Platform manager, I can connect to my device under Windows CE default Platform, but I cannot select it from the Build Toolbar for output and debugging purposes. Is there any work around for this. I've considered moving to VS2008 for this app, but it breaks a large amount of 3rd party code.
Can StandardSDK 4.0 under EVC++ be used to debug on a remote device?
1.7k Views Asked by SmacL At
1
There are 1 best solutions below
Related Questions in VISUAL-C++
- I want to be able to use 4 different variables in a select statement in c ++
- llvm headers do not compile under msvc 2013
- VC++ .net: Functionality from managed DLL is not exported
- Add a picture to Picture Control in a dialog box (error RC2108: expected numerical dialog constant)
- Within a .vcxproj file what are the possible values for the <ConfigurationType> and what do those values mean?
- converting string to a double in visual c++ by parsing
- How to integrate opencv C++ codings with windows application?
- Create string with ESC characters
- What does the thing between "class" and the class name in VC++ mean?
- How to assign (Root)Folder ID in C++? Wherein, those files and folder under it would have the same ID as the RootFolder
- How to convert CString to long? VC++
- How to initialize a String^ *
- How to correctly implement methods of a class returning "this" in Managed C++?
- Non-managed referenced code strangely, "magically" changes its state for no reason when wrapped in managed
- Windows application using libusb: runtime error due to mutex lock
Related Questions in WINDOWS-MOBILE
- How to integrate opencv C++ codings with windows application?
- Exit windows app confirmation button not working
- Escape XML on Windows Mobile 6
- Fastest way to query SQL Server CE database file in Windows Mobile 6.5?
- Consuming SSL SOAP Service, could not establish secure channel for SSL/TLS
- what smartphone features can be restricted for iOS, Android, Windows phones?
- Importing root certificate on Windows CE and Windows Mobile devices via command line
- Windows Mobile development in Windows 8
- How to pass parameter at the time of WinCE app installation/deployment
- Set value of x:Uid programmatically
- How to use uwp Community Toolkit MasterDetailsView?
- Using C# bluetooth API on windows mobile device
- is visual-studio 2013 support Programming for Windows-mobile or Windows-CE?
- insert result of DataSet to ListView
- Slide menu disappear in Explorer for Windows Phone 8.1
Related Questions in REMOTE-DEBUGGING
- What is the principle of IntelliJ IDEA's remote debug?
- Error: Cannot find module '/usr/lib/node_modules/node-inspector/lib/InjectorServer.js'
- Xdebug doesn't stop on breakpoints even when it logs a break, but says it is connected to client
- How to use jmap remotelly without SSL?
- PyCharm add remote Python interpreter inside the Docker
- Remote debugging Flume's custom source and logging
- Debug functional tests from IntelliJ
- Remote debugging tomcat with OpenShift
- Visual Studio in debug mode restarts automatically after an exception is thrown (C++)
- If x and y then construction
- Collect logcat for specified amount of time
- Pass arguments to ARM program while remotely debugging
- xdebug running in PHPStorm unable to connect to remote server
- Debugging Apache Spark clustered application from Eclipse
- Debugging ASP.NET application on a remote IIS server
Related Questions in EVC4
- Possible to develop "Windows Mobile 6.1" appl. with EVC4 (Embedded Visual C)?
- How to use WINAPI from newer SDK but still using the old SDK in WindowsMobile
- How to compile Qt with embeddedVisualC++ 4.0?
- ferror(file) == 32
- Making VS 2008 play nice with eVC 4.0 projects
- Clearing file contents only using FILE *
- How to set the settings to open help of evc 4.0
- After hiding dialog based app on windows mobile platform, user cannot activate it anymore
- DeleteFile, C++, WinCE
- How do I find a source code position from an address given by a crash in Window CE
- Building for Win CE 4.2 in Visual Studio 2008/2010?
- Can StandardSDK 4.0 under EVC++ be used to debug on a remote device?
- Preventing Debug Spam in eVC4
- "A duplicate insert block exists for class xx in the source files"
- Normal main to WinCE main
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Embedded Visual C++ and "Platform Builder" are different tools. The "Windows CE" SDKs are designed to work with "Platform Builder" to make things like OSes and drivers. However, Applications generally use the "Windows Mobile" or "Pocket PC" SDKs.
So here are three different solutions:
Continue to use EVC++ 4.0
If you want to keep using Embedded Visual C++ 4.0 instead of one of the newer IDEs, you can use "SDK for Windows Mobile 2003-based Pocket PCs". Which I believe is the newest SDK for EVC++ 4.0.
Upgrade to VS2005+
This details how to migrate from EVC++ to VS2005 while still making native apps.
You can use the 5.0 SDK line of features in the "Windows Mobile 5.0 SDK for Pocket PC"
Use Windows CE SDK to make Applications with EVC++ 4.0
It actually is possible to make Applications using a CE SDK. This is used by OS developers to make applications for their OS.