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++
- Visual Studio C++, breakpoints not stopping debugging DLL (GODOT GDExtention)
- MSVC Compiler Template Sizeof...() not working
- Visual Studio C++ Access to path is denied
- How can I use CsvHelper to parse a string into a list of tokens?
- Unable to add request headers via CHttpFile - C++/MFC
- Is there a worked example of using CStrBufT with a CString?
- wxMediaCtrl causes access read violation when loading
- Why do I get weird class method redefinition errors when I compile with Visual C++ 2022?
- How to make VCPKG copies dependencies pdb files in output directory
- Difference between INT_MIN , INT8_MIN , INT16_MIN. For MAX too
- 'pip install mariadb' states that it cannot find include file 'mysql.h' on my Windows 10 dekstop
- Windows Custom Credential Provider is not displaying tile on logon for all users in a pc
- Why does MSVC never return struct in RAX for member-functions?
- Configure target system
- UI Interface Crashes and Hanging Issues in MFC Application
Related Questions in WINDOWS-MOBILE
- How to call buzzer sound of device on windows embedded 7?
- How do I get ActiveSync or Windows Mobile Device Center to work in Windows 11 with my MC9190 scan gun?
- Windows Mobile 6 - Handheld terminal How do I check the clock every time I turn it on
- Visual Basic Studio 2008 PocketPC: How to rotate screen ? (Landscape orientation)
- Building projects targeting .NET Compact Framework
- Vs 2005 device connection
- WMDC won't detect mobile device
- process.Start causing Win32Exception on button push
- Win CE Enable/Disable Touch With Application
- Application displays a revolving Windows Logo on Windows Mobile
- c# task (.net 2.0 on WIndows Mobile 5.0) passing parameter does not work like expected
- Impossible to send a packet Exception When pinging in windows mobile apps code(.net compact)
- how to debug system typeloadexception old VS
- Deploy/debug app from VS 2019 to windows 10 mobile phone via USB
- Get The Current TimeDate From GPRS C#
Related Questions in REMOTE-DEBUGGING
- Remote Debugging with eclipse and WebLogic 12c
- Debugging Go Program in Container with VSCode: Path Configuration Issue
- Python PyQt5 Add Remote Debugging To Compiled Application
- Unable to open Chrome Debugger for React Native App in because of flipper waring Attempting to debug JS in Flipper (deprecated)
- The command dsc (Azure BridgeToKubernetes) is failing when running on Git Bash or Windows CMD but working on WSL in isolation mode
- PyCharm Docker Remote Interpreter: Choosing an image from a private repository
- VS Code Debug React
- Select Python interpreter from remote OpenShift
- VS Code Launch Configuration for Node as SUDO
- Facing issue on connecting Android device to Android Studio of remote desktop via USB & Wi-Fi both
- How to setup VS Code for debugging C/C++ code using GDB and Remote Development Extension Pack?
- remote debugging application code(eclipse-test-plugin) in eclipse IDE via maven build not working
- How to launch a new tab with an already running brave browser in vsc?
- Chrome devtools extremely slow using React Native Hermes
- Debugger failed to attach: recv failed during handshake: Resource temporarily unavailable when trying to attach with jconsole, but works for debugger
Related Questions in EVC4
- Clearing file contents only using FILE *
- How to set the settings to open help of evc 4.0
- Building for Win CE 4.2 in Visual Studio 2008/2010?
- DeleteFile, C++, WinCE
- How to compile Qt with embeddedVisualC++ 4.0?
- After hiding dialog based app on windows mobile platform, user cannot activate it anymore
- Porting a Windows-CE application to Windows Desktop
- How to use WINAPI from newer SDK but still using the old SDK in WindowsMobile
- Possible to develop "Windows Mobile 6.1" appl. with EVC4 (Embedded Visual C)?
- How do I find a source code position from an address given by a crash in Window CE
- Preventing Debug Spam in eVC4
- Can StandardSDK 4.0 under EVC++ be used to debug on a remote device?
- ferror(file) == 32
- Making VS 2008 play nice with eVC 4.0 projects
- 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 # Hahtags
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.