Answer Questions
SmileSmita Humongous Javascript Api File.
Hi, I am using v4 of the virtual earth control. But each time I open the page to view the map, it takes an age to load. I've used fiddler to detect the file sizes, and it seems the main file with the core script in it is 436,179 bytes, which seems huge. http://dev.virtualearth.net/mapcontrol/v4/mapcontrol.js -- 168 http://maps.live.com/veapi.ashx v=1.3.1115150037.31 -- 436,179 Also the files are set to not cache, which means the files have to be downloaded each time! I checked the files for maps.local.live.com and it does not download one big file, but instead multiple small files. Ive summed the bytes for the whole page, which comes to about 582,228, but the actual mapping components only seem to add up to ~178,000 bytes, which ...Show All
walsher Don't get it
I cant get the gadget to work. I did what the instructions said but cant get it to work http://www.izonnet.se/msntest.php/ Sorry but I still cant get it to work. what can be wrong.. Thomasarg, That's what the channel.htm does - it does its work in the page load event then redirects the browser to about:blank. This is necessary to reset the trigger for the next event, since some browsers won't fire a page load event if the new URL is the same as the previous URL. To download the channel.htm file, open the URL in something other than a browser, such as Notepad. Start Notepad, File: Open, and type in http://dev.live.com/scripts/AddressManager/c ...Show All
gregaug Get IMEI No.
Hi, I am developing smart device application on CF1.0. I need your help. I want to get an IMEI no of device. How to get IMEI in CF 1.0 . Is there any way to get this Please send your suggestions or links. Thanx, M. GANESAN Yeah I got it from EVC++ DLL. and http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=109823&SiteID=1 http://groups.google.com/group/microsoft.public.dotnet.framework.compactframework/search hl=en&group=microsoft.public.dotnet.framework.compactframework&q=get+imei+number&qt_g=1&searchnow=Search+this+group ...Show All
Aoeuid Form inheritance
I have to have form2 inheriting all the methods and variable in form1. but I don't want to have the graphical stuff from form1. how to by pass that because when i specify form2 inherit from form1 and run the program, it shows on the graphical components of form1 on form2. If you think there is a problem with your inttelisense you can delete the .ncb file in your project directory with the project closed. When you reopen your project the intellisense will rebuild itself. It's kinda silly that we don't have the ability to disable that. but im sure theres a way to do it. In Form2's Load event, you could set Visible = False for the controls you don't want to see. M ...Show All
elodie23 time function
Hi, I'm new to C++ and I am writing a project in it that I want to build on both Windows CE and VxWorks, so I am compiling the project in both MS Visual Studio and Wind River Workbench. There are a number of places in the app where I want to get the current date and time (number of seconds since 1/1/1970) but I can't figure out how to make it work! From what I can tell, time(time_t * timer) is the way to go, but while this compiles fine for VxWorks, when I compile it for Windows I get a strange linker error which says that there are unresolved externals in the function that contains the call to time(). Help! (Thanks in advance!) Rachel Apparently, the old time functions arent implemented in the ...Show All
_CN_ Limiting results to one domain or a set of explicitly defined domains
I would like to limit the web search results to the particular Web site domain that the api is implemented on. So that all the results return will belong to this domain. I can manually filter the results by the result Url property but because of the limit on the number of results being returned I will have to make consecutive requests to the search server until I have completely checked all results or until a tempory collection of results reaches a length equal to the total results per page limit. In addition to the above mentioned issue. There is this request per day limit of 10,000 requests. if every search request cannot return more than 50 results per page (on average) a 50,000 item result set will take up 5000 requests of the 10 ...Show All
shivali.sadavarte how to detect the available network connection in pocketpc
is there any sample code to detect whether wifi or gprs connection is existing in pocketpc or not help me thanks Biju S Melayil wrote: Hi Laja, If you want to check the Gprs Connection is available or not in your application you can use unmanaged code. Hope this one works for you... [DllImport("wininet.dll")] private extern static bool InternetGetConnectedState( out int Description, int ReservedValue ); public static bool IsConnectedToInternet( ) { //value which wilbe returned bool valres= true ; try { int Desc ; //returns true if the Connection is available or else false valres = InternetGetConnectedState( out Desc, 0 ) ; } catch (Exception ...Show All
seco Add Today Item
I have been try to figure out how to add a Today Item which is in quotes and nothing seens to work. Any help would be greatly appreciated. Here is the code that I have been trying to get working. Microsoft.Win32.Registry.LocalMachine.CreateSubKey( "\Software\Microsoft\Windows\Today\Items\'Wireless'" ) Microsoft.Win32.Registry.SetValue( "HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\Today\Items\'Wireless'" , "DLL" , "netui.dll" , Microsoft.Win32.RegistryValueKind.String) Microsoft.Win32.Registry.SetValue( "HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\Today\Items\'Wireless'" , "Order" , 1, Microsoft.Win32.RegistryValueKind.DWord) Microsoft.Win32.Registry.SetValue( "HK ...Show All
Pete_M Longitude, latitude problem
I have been using the virtual earth control and have a couple of questions. I would like the map to initially focus over Turkey in Europe. I would then like to place a push pin over the city of Instanbul. My question is how do I find the longitude and latitude of this country and city so I can use the map control Or is there another way of doing it without knowing the longitude and latitude Thanks Danny There is an easier way, the map object got a method called 'Find' map.Find("","Istanbul,1,myCallback); the callbackfunction gets an array of VEFindResults or an array of VESearchResults, which one depends on the search parameters. Thanks for the r ...Show All
Matt_343 Pocket PC application Development Strategy
Hi, I am searching for a solution for connecting Pocket PC application to Desktop MS Access DB. Currently my Palm Device application communicates with Desktop MS Access DB via custom conduit using HotSync Manager. Now I am planning to develop same application for PPC 2003 / Windows Mobile 5.0 which should communicate with existing Desktop MS Access DB. I have no clue, where to start with. May I request from Pocket PC developer community to give me some valuable suggestions/opinion on giving a start to my development activity. Do I need to write conduit similar to one that consumed by my palm device application. I would appreciate any suggestions/links/samples on this topic. Thanks Santhosh ...Show All
fbiots Create a simple Service[Like windows service for desktop] for windows mobile 5.0 smartphone application in C#
Could any body give me a sample for Creating a simple Service [Like windows service for desktop] for windows mobile 5.0 smartphone application in C#. [Not in C++] Please don't post multiple messages for the same topic hoping to get an alternate answer. Please go thru the MSDN articles listed in the thread http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=550630&SiteID=1 to read about the service implementations. As pointed out by Alex, services need to export functions and this is not possible for C# projects. You have to use C++ to do this. Sorry there is no other choice. Closing this topic as answered. Manav Services need to export functions, which is not supported in Compact Framework projects. At present ...Show All
Smoc Windows Live Messenger Not Working
Hello , When i try to run Windoes Live Messenger I get this window http://img333.imageshack.us/img333/9122/untitled4ga.jpg My friend told me that it may be fix by giving my his files from : C:\WINDOWS\WinSxS He gave me those foulders :- 1- x86_Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_8.0.50727.91_x-ww_0de56c07 2- x86_Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_8.0.50727.42_x-ww_0de06acd 3- x86_Microsoft.VC80.DebugCRT_1fc8b3b9a1e18e3b_8.0.50727.42_x-ww_f75eb16c i replaced them over my files and now i get this : http://img147.imageshack.us/img147/1849/untitled0om.jpg and then Windows Live Messenger still not working :( .. Please help me I am sorry but this forum is for development discussion only. Try more general help and support in ...Show All
GuyWithDogs a newbie question about activities and robots
i want to develop a simple robot which can send a invite message to my user, when they accept,open a certain webpage in the rightside window. how can i do that. is that called activities (i'm using msnp.py and have successfully send and recieve pain-text message between my robot and user. ) I have found some SDKs for MSN chat robot, such as AkonixR L7 Builder TM SDK , Incesoft Bot Platform SDK , and Colloquis TM BuddyScript SDK , you can find them at https://www.robotinvaders.com/main/About.aspx And I use the Incesoft Bot Platform SDK ( http://sp.incesoft.com/download ) for writing a robot, you can also try it. Incesoft botplatform SDK has a interface named Incesoft.BotPl ...Show All
brad0999 Device application icon does not show up in the start menu
I have built a PPC 2003 application with VS 2005. When I deploy application to my device it works fine and I can see its icon in file explorer. However when application is running its icon is not listed on top of the start menu as icons for all other running applications do. Do I have to programmatically register my application with the system at startup to make it apper there Or is it something wrong with the icon I use for the application Thanks Items only appear in this place if they were launched from a Start Menu (or Programs folder) shortcut. Add a shortcut to your app here and use it to launch your application, then it will appear on the recently used list. Peter ...Show All
Billr17 WISH LIST FOR THE NEXT RELEASE
Lets start a wish list for the features we want for the next release. My numba one wish is: I want the Altitude of the center of the map in the view object of the .onchangeview Event. Well, 1.id like more performant map-servers. The google-maps map-servers seem to deliver the map-tiles much faster than the VE-map-servers. 2.id like to have the option to choose between 2 ways of zooming: the default behaviour where the an empty tile is displayed until the map-tile of the new zoomfactor is loaded and the google maps style behaviour where the old map tile is scaled up/down until the new tile is loaded, so there are no empty tile-blocks while loading the new graphics. Yep, we're listening. I've been quiet lately ...Show All
