Answer Questions
Thunder2002 Legal issues with Google AND MS?
Does anybody know if there are any legal issues of using both the Google Maps API and Live Local N,W,S,E map view API in a website Thanks Crpietschmann! Neither of the Terms of Use for Google Maps and MS Virtual Earth mention anything about using them along side one another; as far as I can tell. But don't take my word for it; I am not able to offer legal advise. You should read over the Terms of Use for both for yourself to draw your own conclusion. MS Virtual Earth terms of use: http://www.microsoft.com/virtualearth/control/terms.mspx Google Maps terms of use: http://www.google.com/apis/maps/terms.html ...Show All
Jafar Bhatti Out of date pictures!!!
Service is a good concept. However, seeing the 3D image of tall buildings thought I would take a look at the landmarks where I work and how they look. I work in the city of London so was wanting to see how the Swiss Re tower (the gherkin) would look. This is located on St Mary Axe. A search here however reveals the old site which had yet to be built on. This must've been years ago meaning the photos are out of date. It wouldn't be such a problem if the building wasn't such an integral part of the London skyline as we know it now! If anyone doesn't know what i'm talking about go to http://www.30stmaryaxe.com/index2.asp and anyone who's been or seen pictures of what little skyline London has will recognise it and hopefully see my point. SORT ...Show All
ACraigM119 Polylines cover pushpins -- can the pushpin be put on top?
How can the pushpin be put on top of the polyline <html> <script src=" http://dev.virtualearth.net/mapcontrol/v3/mapcontrol.js "> </script> <script> var map = null; function GetMap() { map = new VEMap('myMap'); map.LoadMap(); map.HideDashboard(); map.SetZoomLevel(10); } function AddPin() { var pnt = new VELatLong(50, -100); var pin = new VEPushpin('pin1',pnt,null,' ',' ',' ',' ',' '); map.AddPushpin(pin); } function DrawLines() { DrawPoly('Line1',[new VELatLong(50,-99.95),new VELatLong(50,-100.05)], 7, new VEColor(50,200,50,1)); } function DrawPoly(id,points,width,color) { poly = new VEPolyline(id,points); poly.SetWidth(width); poly.SetColor(color); map.AddPolyline(poly); ...Show All
Joy Conner Why no managed C++?
I am wondering what is the specific reason why there is no support for managed C++ (CLR projects) in smart device development Is it because this area is not very popular and since most .Net programmers use C# and VB, MS figured the resources are better spent elsewhere Or is there some other, technical reason I have done plenty of Win32 and MFC development and I have no problem using Win32 (or should I say, the Windows API) for lower-level stuff (inter-process and thread synchronization and communication, system and hardware access, etc.) but MFC was really only good for GUI stuff and now that we have .Net, which can do that and so much more, I just don't want to have to go back. And I'm really not looking forward to learning C# - not that ...Show All
stallion_alpa live messenger logging on twice
Everytime I log in, messenger tries to run twice on XP pro. It gives me an error that I can only sign on one computer at a time . I've checked the startup and it only appears once. Is there any fix for this and is it a known issue Cheers. I am sorry but this forum is for developmen discussion only. http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=368260&SiteID=1 http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=335030&SiteID=1 I had the same problem and it was the Windows Messenger that logged on also. Run and disable Windows Messenger to start, it is available in the start menu. ...Show All
chandrala perform MD5 encrypting
Hello every body, i'm developing an application on windows mobile 2003 using VS2003 and compact framework 1.0. My app requires encrypting password by MD5 algorithm but i'm not sure it's supported in Compact Framework 1.0. Pls help me to solve this. Thanks. technically hashing IS encryption -- it's just one-way encryption. You could P/Invoke Crypto API yourself, use wrapper from OpenNetcf.org 1.4 or upgrade to NETCF V2. This should help finding the solution. By the way, MD5 is not encryption but hash algorithm. Not according to definition: http://www.pcmag.com/encyclopedia_term/0,2542,t=encryption+algorithm&i=42595,00.asp Definition of: encryption The reversible ...Show All
rae_mel84 New WLM API confusion
Hi, I've read in here http://msdn2.microsoft.com/en-us/library/ms630960.aspx that the COM Messenger Type Library will be deprecated by the time Windows Vista is launched. How is the new Windows Live API supposed to replace it the Windows Live API for activities and add-ins seems pretty limitated to me, for example would be possible to retrieve the contacts of my list . I mean is there gonna be an alternative to classes like IMessengerContacts, IMessengerGroups etc Thanks. i see, hasnt there been any complains about it it seems kind of limitated you cant even retrieve users contacts. The COM Messenger Type Library hasn't been available since Windows Live Messenger, and ...Show All
KentaroM Looking for skilled API developer
Hi All --- I'm interested in developing an activity that would be a database of profiles for a gay dating service. The profiles would indicate who is online and allow users to communicate via messenger. There would be a browse and search profiles function. Everything else would be messenger based. I'm looking for an API developer that I can work with to develop this... Anyone interested or know someone they can refer me to Thank you, Jim jimmcdermott@si.rr.com It's not a hobby project -- I want to pay to have this done. How big is the project Is it a hobby project, or are you looking for serious developers And is there a payment or something Jim McDe ...Show All
stensby Real Time Communication (rtccore.h)
Hi! I'me facing serious problems :( I want to develop a application for Windows Mobile 5.0. It's a VoIP application and I need to use a RTC API. Ideally it should be made in C# but since I can't find any RTC API to that purpose i'm trying on C++. My problem is that I don't know where to find Rtccore.h. Where is what I do: - Open Visual Studio 2005 - New Project -> Visual C++ -> Smart Device -> Win32 Smart Device Project - Choose the Windows CE SDK and the WM5.0 Smartphone SDK - Choose Windows Application Near the includes of the "as.cpp" i've inserted: #include <rtccore.h> When I try to compile I have the information that the file "rtccore.h" was not founded. I've search my disk and I don't have any &qu ...Show All
GrahamY JS Alert box with clickable links
In the Interactive SDK there are many examples that show a yellow alert box containing clickable links. How is this done I need to pop up a box of clickable links in my custom disambiguity function and I can't work out how this is done. any help would be appreciated. Interesting, after doing some research that yellow alert textbox that you see is actually generated from a separate javascript on the interactive SDK, namely vesdk.js. All you have to is make sense of the following code and attach it to your script if you want to duplicate the same box: function DoAlert(text) { var d=document.getElementById("alertdiv"); d.style.visibility="visible"; document.getElementBy ...Show All
BilalShouman How could I lock and unlock the keypad on smartphone
Hi, I'm writting a program that have to lock the keypad when it is inactive and can unlock the keypad by pressing a single key.But how can I do that,Is there any APIs Thx! Yes,It works.Thx. But it only works when the application window was shown, when hide the widow it won't work. So can you tell me how to do next In fact, I need a function that can lock the keypad and the device after a period of the device been inactive.Can any one help me Thx! BOOL EnableHardwareKeyboard(BOOL bEnable ) will allow you to disable and enable the keyboard. As for getting it to come alive again, you'll only be able to press certain buttons, ones that won't be blocked by disabling the hardware keyboard. Things like the ca ...Show All
de2 Set Icon To Toolbar
Hello Experts, How can I set an Icon to my toolbar The examples given in MSDN is not working for me, might be I am missing refering to some vital libraries other than System.Drawing. I get a NotSupportedException everytime I am trying to load an icon. Even Image.LoadFromFile() is missing in my development environment. I can't set a stream to Toolbar.ImageList.Image.Add(Stream stream) method. Please help. Regards, Suman Hi Friends, I finally did it myself but couldn't do it runtime. All I did was set it in design time , so its not that flexible. Heres what I did: 1. Added a Toolbar and Contextmenu [which contains menu items I created separately]. 2. Related the contextmenu to the toolbar. 3. Next I added an ImageList component to t ...Show All
Kevin_H How to retrieve SMS content??
I would like to retrieve an incoming SMS content to a textbox., but i don't know how to retrieve the SMS content.... Any one can give me your hand Thanks !!! I've never tried it but take a look at this: http://msdn.microsoft.com/library/default.asp url=/library/en-us/mobilesdk5/html/T_Microsoft_WindowsMobile_PocketOutlook_SmsAccount.asp http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=408382&SiteID=1 Oh oh - didn't see that the same answer was already posted. My bad No worries - "great minds think alike" ;-) and its reassuring for myself to know I was on the right path! Check out the Microsoft.WindowsMobile.PocketOutlook.SmsAccount namespace ...Show All
AlanCam Hiding the save as dialog/button...
Hi, Is there anyway I can hide the save as button while downloading a content in Pocket PC 2005 using Internet Explorer or the Web Browser control. I want to do this because I wan't the user to save all the downloaded files in one location only. Thanks for any reply. Dipesh The save as dialog that you see when downloading content is a native control and you will not be able to hide the save as button from managed code. If you want to have exclusive control over where content gets downloaded to then maybe you should not use the Web Browser control but use the HttpWebRequest class. ...Show All
Sean Shanny Driving Directions Display
Hello, I have a driving directions code that when you put an address in the route and directions popup, is there a way to make it so the directions get inserted into a area below the map instead of it being a popup (alert) My code is below. <html> <head> <title></title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <script src="http://dev.virtualearth.net/mapcontrol/v3/mapcontrol.js"></script> <script> var map = null; function GetMap() { map = new VEMap('myMap'); map.LoadMap(); } function ...Show All
