Answer Questions
Simone1 Design page like Start->programs in windows mobile
Hi guys I need to design a mobile application with icons in the main window The page that I need looks like the page when you click (Start-> programs) from your pocket pc Its very simple just view icons but my problem is which controls that I use to design this window Can any one help please Regards Check out the OpenNETCF.Windows.Forms.ListBox2 class included in the Smart Device Framework . Here is an old blog post of what it could do. You can also check out the PopupMenu Control . See here for a sample of what could be done with it. HTH ...Show All
Confused4130 How to iterate an ArrayOfAdCenterAccount and/or an ArrayOfAdCenterCampaign?
Hi there, I am wondering how I can iterate such types of objects. I need to get all my accounts and for each of those accounts, retrieve all the campaigns and ask for a keyword performance report. It is nice to have get an ArrayOfAdCenterAccount but I don't see any method to get the size of this array or how I can instanciate an iterator over this array in order to get all the account ids. The same for the ArrayOfAddCenterCampaign. From an AdCenterAccount, I can retrieve the ArrayOfAddCenterCampaign. But for getting a keyword performance report of these campaigns, I have specify an ArrayOfInt with the campaign ids. Once again, how do I instanciate an ArrayOfInt from the ArrayOfAdCenterCampaign Did I miss a point or are such methods not a ...Show All
bofey Mismatch in API and Adcenter Site data for KW Performance Report
We have observed an issue in the Reporting in LIVE environment where in the data we get from the API (Keyword Performance Report with customized option) for given account and day. is different from the data we see on the adcenter site. I am not sure if the data returned by the API is incorrect or the data displayed on adcenter site is incorrect. The difference is in the range of 2-4 %. Is it a known issue at Adcentre Hello, Would you please specify the following Are you using the Production site for both the UI (website) and API What dates are you requesting the Keyword Performance Report for If possible, would you please post a non-proprietary code sample where the Report Request ...Show All
mobigital PPC ROM access
Hi, i have only one question: Is there any way to access to ppc's ROM thanks If you’re looking for a way to uniquely identify device it probably won’t work. Most likely it’s unique to each device type/OS version, not to each device because exactly the same ROM image is used for all devices of the same type. E.g. if you have 10000 devices of the same make/model with the same OS version all of them would have the same ROM hash/checksum. There’s an API which allows you to get unique device ID. It’s not supported on emulator for obvious luck of unique ID storage (low capacity NVRAM like 93C46 or whatever is used nowadays to store such information) but it should not matter as you only debug on it. Generate some random number and ...Show All
GrandpaB Enter Key Down Event is not working in Windows Mobile emulator
I downloaded Stand alone Emulator for Windows Mobile 5.0 from the link http://www.microsoft.com/downloads/details.aspx FamilyID=c62d54a5-183a-4a1e-a7e2-cc500ed1f19a&DisplayLang=en . I have developed an application in which I have written a code on Enter Key down Event. This code is working in Emulator provided along with Visual Studio 2005 but it is not working on the Stand alone Emulator downloaded from the above link. I searched and found the following link, which says its bug. Could someone please confirm it to me. If Yes, please let me know the workaround if any. http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=354069&SiteID=1 Thanks Can you p ...Show All
vsarowatz Get rid of/disable X
I'm developing an MFC app for a Pocket PC type device. Most of my dialogs were automaticly given an OK in the upper right corner that caused that dialog to close and I disabled it but replacing the void OnOK() function with one of my own. However the main window is given an X in the corner that causes the window to close (and dosn't even stop the program), i've tried replacing OnOK() OnCancel() OnClose() OnDestroy() without any sucess of intercepting/detecting when the user pressed the X. How can I do it Dave, this is by design and I recommend you don't change the default behavior of the Close button to be consistent with the way all other apps behave. For more background information, read this post: ...Show All
stswordman Italics in listbox
I have what I believe to be a pretty simple question, but I cant find the answer. I have a listbox and am wanting to progromatically make the font italics or regular font depending on what is being displayed. I know there is a way to do this, but I dont know the syntax. Font fontRegular = new Font("Tahoma", 8, FontStyle.Regular); Font fontItalic = new Font("Tahoma", 8, FontStyle.Italic); Then: myListbox.Font = fontRegular; or myListbox = fontItalic; You can make the whole listbox to be italicized (by setting its Font property to italic font), but not on per-item basis. To control each item you will need either a custom control or a control like OpenNETCF.Windows.F ...Show All
m# Problem with HttpWebResponse
Hi, I have some problem with the following code : HttpWebResponse result = (HttpWebResponse)req.GetResponse(); //result.ContentLength -> 159 Stream ReceiveStream = result.GetResponseStream(); //result.CharacterSet -> "" //result.ContentType -> text/html; charset=utf-8 //result.ContentEncoding -> "" //result.Headers -> Date: Tue, 25 Jul 2006 10:58:47 GMT Server: Microsoft-IIS/6.0 MicrosoftOfficeWebServer: 5.0_Pub X-Powered-By: ASP.NET X-AspNet-Version: 1.1.4322 Set-Cookie: ASP.NET_SessionId=zmksm055kvyigzmlvxgohqe2; path=/ Cache-Control: private Content-Type: text/html; charset= ...Show All
chris bax Multi point route
Hi, Simple question...is it possible to have a route with multiple stops on it. I don't want to just go from A to B, I want to go from A to B to C to D. Is there something I'm missing or is this a fundamental omission Hope someone knows Cheers I too am looking into this functionatily for our fleet. But I would like to make user this is a viable solution before investing time and money into it. Do i need an account to test it The problem with that dave is the lines don't follow the streets. I guess Polylines are the only way to go until we can pass an array of points. John. Sounds like a good way to achieve what you need. The problem with a muilt point route is i ...Show All
R Raghu Use local.live.com
Hi, Is it possible to use local.live.com in its entirety on my own site and add my own custom stuff to it We want almost all the functionality that local.live.com (Print, DD, etc.) and add some custom stuff to it. Is that viable If yes, how If no, what are my other options Thanks, Sanjeev Quoting Cheekster: "The new SDK has new and better ...." The SDk that you refer to - is this the Virtual Earth SDK or some other SDK I haven't seen/heard of a specifc SDK for Live.Local.Com... Thanks It is the VE SDK. First, you could just go to the viavirtualearth.com site and dig up articles and blog posts that may contain good fea ...Show All
Muralidhar M S Can't call web service from Windows Mobile 5
My vb.net program calls a web service, which works fine on Pocket PC 4.2, but when I run the same program on a Windows Mobile 5.0 (deploying from a VS 2005 project), it doesn't work; here's what I see in the immediate window when catching the exception after my web method call: A first chance exception of type 'System.IO.IOException' occurred in mscorlib.dll A first chance exception of type 'System.UriFormatException' occurred in System.dll A first chance exception of type 'System.Net.Sockets.SocketException' occurred in System.dll A first chance exception of type 'System.Net.WebException' occurred in System.dll A first chance exception of type 'System.Net.WebException' occurred in System.Web.Services.dll ex.Messag ...Show All
Valery Zharkov Article - Loading your pushpin popup content on demand
The next in my series of little articles I look at loading the content inside your pushpin popups on demand: http://www.soulsolutions.com.au/Articles/PopupContentonDemand/tabid/98/Default.aspx Full working code for improvements here at the wiki: http://viavirtualearth.com/Wiki/PopupContentonDemand.ashx John. Thanks. The next one is a little bit of a challenge since there is a bit of code it there. I'm thinking of only posting the really important bits in the article then having the entire example project for download. I was also thinking about making a little video run-through to make it more interesting. What do you think John. John, everything coming from your mind sounds very interesting. The art ...Show All
lushdog How to update a gadget
I'm wondering how to update an existing gadget on the live.gallery When I go to my profile I only can update the descption text but not submit updated (zip) files for the gadget. Do I have to take it of In that case the gadget isn't availble anymore I think and it's downloaded about 8000 times so that should not be the right solution. Right under the section of the page where you update the description,etc... There is a "Files - click here to update the thumbnail and / or item " link. It's not very obvious. Click on this and a new panel will appear that will allow you to upload new files. Drs.P. wrote: I'm wondering how to update an existing gadget on the live.gal ...Show All
vdv_phuong Convert GPX to GeoRSS
Does anyone know of a tool that will convert GPX to GeoRSS I know about XML transforms and that they are used to convert data from one XML schema to another. However, this really doesn't help me as I cannot find any reference to an XSLT to convert from GPX to GeoRSS. I don't mind implementing a tool myself to do the conversion, but I really don't want to go through the tedium of building my own XSLT. The technology to convert xml to a different format is called xslt. Do a search for GPX and XSLT, there are lot of links to save you starting from scratch. John. Here's the link to the gpx2ve.aspx.cs page I'm using: http://www.calebthompson.com/project ...Show All
Jive Dadson Website Photo Uploads
Please can someone explain to a complete 'novice' how to get a picture display on a web page!.....I am trying at the moment a tutorial and after following the info of first 3 stages am now stuck on how to put image on the page! Please can someone explain in really easy instructions as really am a novice. Well, if you wants to display a picture on MSN Spaces, or on a web page created with a program like Microsoft FrontPage, firts of all upload that picture on a free upload site like www.imageshack.us . If you upload a picture into that site, it give to you, after the upload-process, a list of codes and url's. You need the last one, that is the url. Copy it and paste it into the adress-bar in a new page of Internet Explor ...Show All
