Answer Questions
vgvKarthik VS2005 smart device exe doesn't run
VS2005 smart device exe doesn't run My Pocket PC 2003 app has just one form, and a "hello world" msgbox from a button. I add a Smart Device Cab Project to this project. I the set its Primary output to my test app. This then creates all my dependences. These dlls are all set to exclude = true. Now because my pocket PC has just been hard reset (So I can test the set-up) I set the exclude = False for all the dlls. This I thought would be enough to create me a cab file for my test exe to run. I copy over the built cab file to the Pocket pc and run it from there. The app sits in its correct folder in program files but when clicked just doesn’t show. Any help would be most welcome. Thanks ...Show All
Izzy545 Power down in PDA
Hi, all, My PDA app (on Mobil 2003 OS) is required the following: Automatic power down(sleep mode), on battery 5 min, on power 20min. I don't want to ask user manually change the battery setting. I'd like to have the client app handles that. Thanks in advance. Grace It's in the registry: [HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\Power\Timeouts] -Alex ...Show All
HET2 Threading in .NET CF
Hi, I am using VS.NET 2003 for developing .NET CF application. I have many forms in the application which i want to load when user starts my application. I want to load all the forms in the start of application to provide fast switching between multiple screens. I have used singelton pattern to avoid creating multiple instance of the forms. The requirement of my application is to load some job related forms when user opens a job. Loading some of job related forms includes creating instance of form (if it is not created) + loading field values from the database. Some Job related forms i load at the time user opens the Job while other forms i load when user navigates to a screen where it is required to load all the additional forms for pro ...Show All
Prasenna Datatable refuses to go out of US date time format C#
This C# does not seem to work: newTable.Locale = new CultureInfo ( "sv-SE" ); // newTable is a Datatable It's still in US datetime format. I've tried lots of different constructs. I working in Windows CE 5.0 That would be coredll.dll, API is SetLocaleInfo(). If you're not familiar with P/Invoke, please see information here and here . DTP has Format property which you can set to any format you like. By the way, it appears you're confusing locale with date and time format. Can you change the locale of the entrie device programatically from C# or do you have to do it from C++ and P/Invoke it DataTable stores DateTime in format-l ...Show All
Zero_ Breakpoint will not currently be hit in smart device DLL
I am trying to debug a C# .Net Compact Framework 1.0 application for Pocket PC using Visual Studio 2005. The application is made up of a number of DLL projects. All the projects are set to Debug, and they all deploy to the device fine. When I debug the application I can set breakpoints in all the classes except those in one particular project. Breakpoints are not hit in this project, and when I am stepping in other classes that use objects from that particular project, the debugger says "Could not evaluate expression" What I find even weirder is in the debug output it says "Symbols loaded" for that particular DLL, but in the Modules window the DLL is not listed. Even though the debug output indicates it is loaded and t ...Show All
saud.a.k BUG: VELayerSpecification.LayerSource Requires ".XML" Extension for GeoRSS
Hello, I've been working and evaluating both VE and MapPoint Web Services for use publicly and privately within my organization. Recently, I was asked to plot all the office locations on a map. I decided to use MapPoint to geocode the locations on the server and generate a GeoRSS file to use within the web page with the VE control. I discovered that even with the MIME Content Type specified (as application/rss+xml), the VE control will not load the push-pins into the layer if the LayerSource does not contain a ".XML" extension when the Layer Type is set as GeoRSS. Please consider removing this limitation in future versions of the control. I don't believe that developers using VE should have to generate a physical XML file for the control t ...Show All
Shmelly Launch an approved activity
Hi all, I submitted an activity created by me to gallery.live.com, and even after it got accepted, I have not been able to launch it in my Messenger! When i click the 'Launch in Messenger' link, all i does is that it takes me to a page with ads of MSN games! This is the link to my activity: http://gallery.live.com/liveItemDetail.aspx li=141912f8-dd72-485f-943a-971b5bdbc8cb&l=6 Please help me (as the creator of the activity) see what it's turned out to be! I have tried it all! Reinstalling Messenger, clearing the browsers (IE) cache. But i still can't get anywhere! J-Thread wrote: ... I can assure you that they are correct.... You sound like an Insider! Are you one or is it just your faith is MS ...Show All
Will Durning how to read an incoming email in pocketPC 2003?
Excuse me anybody know about how to read an incoming email in pocketPC 2003 I have tested a lot times,and I have downloaded VOmapi,but still not got exact email body content,Please help me,Thanks! Please post this question in the news groups refered in the announcements section of this forum Thanks Srikanth Bogadapati some code: LPCTSTR CVOMAPIMessage::GetBody() { IStream* pStream; char szBuf[255]; ULONG ulNumChars; CString strBody; HRESULT hr; hr = m_pMessage->OpenProperty( PR_BODY, &IID_IStream, STGM_READ, NULL, (LPUNKNOWN *) &pStream); EXIT_ON_FAILED(hr); do { pStream->Read(szBuf, 255, &ulNumChars); if (ulNumChars >0) { static CString strB ...Show All
quantumboy re : running wince 5.0 based app in eVC++
i compiled and ran a C# application in VS.NET 2003 with Win CE 5.0 sdk but could not do the same with eVc++ 4.0 and Win CE 5.0 sdk is there something im missing , i want to develop application for devices running WinCE 5.0 in C++ thanx for that reply what does platform manager mean and apart from visual studio 2005 , i suppose win ce is an operating system on itself is it posssible to install this OS ( i saw a trial version in microsoft website ) on a pc and make applications regards eVC 4 is not a supported option for Windows CE 5 and newer development. You need to use Visual Studio 2005 ...Show All
Rakesh Jha Get latitude longitude coordinates on a click event
Hi, I've just started using Virtual Earth... Is there someone who can tell me the code to get a point latitude and longitude coordinates when the user clicks on the map Thanks a lot... Hi!! There`s a way to writte a polygon with the lat`s and long`s the user gives every time hi clicks the mouse Well it just so happens that I have this exact little snippet for you ... I copy the coords to the clipboard also to be extra nice map.AttachEvent('onclick', HandleClick); function HandleClick() { mapXPixel = event.clientX - map.GetLeft(); mapYPixel = event.clientY - map.GetTop(); latLong = map.PixelToLatLong(mapXPixel,mapYPixel); ...Show All
Seppe001 Performance - Standalone Device Emulator 1.0
Hi! Is there a hardware requirement for run the standalone emulator with good performance Any recomendations Any way to improve performance Thanks. Device Emulator keeps a thread pool, so if you have hyperthreaded CPU/multiple CPUs, it will take advantage of it. Other is have atleast 256 MB of RAM. I would suggest you to move to Device Emulator 2.0 Preview. It is actually a lot faster as compared to Device Emulator 1.0. DE 2.0 CTP is free available from Microsoft site. -Thanks, Mohit ...Show All
yahu_Hugh NMD_UI sample not working
Hi all, After installing the NMD packet with all updates/rollups I've tried to build a NMD platform as described in the eHowTo from Mike Hall's weblog. Unfortunatelly there is no NMD entry in the Platform Builder wizard after the NMD install. Even after installing all the tools again (WinCE/PB) with all updates the entry is not visible. Does anyone know how to procees in order to activate this item Then I've tried to compile the NMD_UI sample by hand. After hours of searching for dependencies I've succeeded to start it. Again, bad lack: the app is not running cause is not finding some registry entries/strings etc. I need some help in order to be able to build/run this sample. Thanks, Cosmin Hi Cosmin I suspect you did not inst ...Show All
Kevin ORiordan LatLong calculated with PixelToLatLong varies from e.view.LatLong
I am using the following to calculate and display the cursor location: latlong = map.PixelToLatLong( event .clientX, event .clientY); Then, in the map.OnClick event, I use e. view.LatLong to display the cursor location. However, the two values are different! Which one is right Since I'm adding data to a database based upon the location I feel it's important to get it right! Getting the accurate pixel location has been causing me problems. In a recent demo for drawing accurate polygons using the crosshair we had to actually correct the value by 1 pixel up and 3 pixels right for IE. (try it in local.live.com) We also had to use a more generic function to get the top and left position of the ...Show All
williamguy extending smart device project in visual studio 2005
I am currently working on a project in which I have to extend visual studio 2005 and I need to create a project structure which is similar to that of the pocket pc and smartphones i.e., I need to support the flat forms with the skins and also the flat controls. This project will allow application developers to create a new type of application using custom designers and custom controls. I have not found any documentation on how I can extend the smartphone form designers. I tried using a myform class derived from windows ce form but when it was actually rendered on the design surface, it showed up as a normal windows form. So please provide me some help regarding how I can extend the windows ce form desi ...Show All
hye_heena Error 8013150a when trying to access webservices from an Add-in
Im coding an add-in.. A translator Add-in...when I chat with someone who write in english the add-in uses free translator webservice and translate the text... But everytime the add-in try to access the webservice i get this error: 8013150a And the add-in is deactivated. Regards from venezuela Carlos Yakimov p.d: sorry for my bad english =P Hi Carlos, If you want to access Web Services you would need to GAC your Add-in. The Add-ins run under CAS and do not allow the calling of web services in this initial version. There are some threads on this forum on how to GAC your add-in thanks James ...Show All
