Software Development Network Logo
  • Windows Forms
  • Visual C#
  • Audio and Video
  • SharePoint Products
  • Visual FoxPro
  • Visual Basic
  • Smart Devicet
  • Windows Vista
  • .NET Development
  • IE Development
  • Visual Studio
  • Visual C++
  • Game Technologies
  • SQL Server
  • Microsoft ISV

Software Development Network >> Smart Devicet

Smart Devicet

New Question

Where is the best place to report map data issues
FireFox bug in V3
font.DrawText
The Driving Directions script does not work.
keybd_event() and RDP (Remote Desctop Protocol)
Color rows in Datagrid
Using HttpWebRequest GPRS connection remains open
wierd c# compilation error
Need a way to display line numbers.
Webpage Link

Top Answerers

AlexBB
Daikoku
JLarkin
liuming
Brannon
ddee
smalamas
yeodon78
chris441962
Bob Reinke
sitemap
Only Title

Answer Questions

  • mammoo So many Forms Issue Still not solved :(

    I have a Pocket PC Chat application where i need to open so many forms for private chat sessions. The problem I faced was that when I opened a few form I saw and instance in Task Manager. For 10 opened forms I saw 10 Instances. To work around on it I came to the solution that I have to have Text only on 1 Window of application at a time. So I wrote 2 classes: 1) A FormBase class from which all my forms are inherited: public partial class BaseFormCommSuiteMobile : Form { private string uniqueID; public BaseFormCommSuiteMobile() { InitializeComponent(); this.uniqueID = Guid.NewGuid().ToString(); } public string UniqueID { get { return this.uniqueID; } } pr ...Show All

  • DeveloperFrankie VS 2003 C# - Can't connect to Emulator

    Hi, I'm pretty new to C# development and try to start my first C# project for a Smartphone 2003. The app itself is running if i copy it to the Smartphone but anyhow i would like to run it on my native machine (hope thats easier than copying it always to teh device) But if i deploy my solution i receive a connection error popup stating: "There were deployment errors. Continue " In the Output frame i see: ------ Deploy started: Project: spTest, Configuration: Debug Smartphone ------ Deploying to WWE SP 2003 SE (Virtual Radio) - SDK Emulator using Emulation Transport Error: Cannot establish a connection. Be sure the device is physically connected to the development computer. ---------------------- Done ---------------------- I recei ...Show All

  • Robert3234 Performance System.DateTime.Now

    Hello The API function GetSystemTime(out st); (PInvoke) is about 1500 faster then System.DateTime.Now; System: WinCE50 on ARMV4I TestCode: using System; using System.Data; using System.Runtime.InteropServices; namespace DateTimePerformance { public struct SystemTime { public ushort wYear; public ushort wMonth; public ushort wDayOfWeek; public ushort wDay; public ushort wHour; public ushort wMinute; public ushort wSecond; public ushort wMilliseconds; } /// <summary> /// Summary description for Class1. /// </summary> class Class1 { [DllImport("coredll.dll")] public static extern void GetSystemTime(out SystemTime st); /// <summary> /// The main entry point for the a ...Show All

  • ccrockatt Redeploys DLLs Every Time

    I'm using VSTS to develop an application for Windows Mobile 5 devices. All my DLLs are redeployed every time I hit F5, even if no changes. Is this a known problem Are there any workarounds I am using Visal Studio 2005 standard, I guess I am assuming VSTS would the same features or more features. Yes you are correct, it's the solution explorer. Once you select the dll file you should see it in your properties, third from the top. No, not doing unit tests, just a standard app with a bunch of DLLs. I've since learned that I can uncheck Deploy in the Configuration Manager for each project. Perhaps this is standard behavior. I was assuming that Visual Studio would not redeploy things that hadn't change ...Show All

  • Computer Guy69146 Relation of Map Point to Virtual Earth - can someone explain?

    I've been trying to get my head around this concept. What is the relation between Map Point and Virtual Earth If we want maps as a server-side only solution (no internet connection) would we use Map Point Does Map Point ship with a Virtual Earth style .js interface or would we have to build our own Any clarification would be greatly appreciated. Map Point and VE share the same data. Map Point is called through a web service, server side. It therefore is more compatible and runs under SSL. The key difference is Map Point generates an image on the fly including all data overlayed while VE using pre-rendered tiles and overlays objects using html. VE is much slicker and performs real ...Show All

  • julial77 FolderBrowserDialog for WM5

    Hi, I have used FolderBrowserDialog in a Windows application OK but it does not appear to be available in WM5 although the help does say that it should be available... Platforms Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC , Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition Could someone give me some guidance here, have I forgotten to do something Thanking you Dave Hi Tim, Thanks for the confirmation, I think I was coming to the same conclusion. Regards   Dave, .NET ...Show All

  • David J. Roh 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

  • Stephen Westlake web services

    How to access webservices from pocket pc application ...Show All

  • nobugz Add CAB into ROM

    Hi, I am developing smart device applications by using CF1.0. I have a doubt. The question is "How to add my CAB file into ROM Why i am asking is if we make a hard reset the device, our installed applications will also be removed only default CABs will be installed. So I want to add my CAB file into ROM. Is there any software for adding my CAB into ROM Please send your suggestions or links. Thanx, M. GANESAN Hi, Thanx for your reply. I accept your comments. Is there any other solutions to solve this for example I copied the .exe file in the storage card/My Documents folder. Suppose the device met hard reset, Is not deleted that .exe file during the hard set My question is if that .exe file is not deleted fr ...Show All

  • kesim Draw a circle given a lat/long and radius (in miles)

    Had to do this for a project here at work and thought I would share the code: function AddCircle(latin, lonin, radius) {     var locs = new Array();     var lat1 = latin * Math.PI/180.0;     var lon1 = lonin * Math.PI/180.0;     var d = radius/3956;     var x;     for (x = 0; x <= 360; x++)     {         var tc = (x / 90)* Math.PI / 2;         var lat = Math.asin(Math.sin(lat1)*Math.cos(d)+Math.cos(lat1)*Math.sin(d)*Math.cos(tc));         lat = 180.0 * lat / Math.PI; &nb ...Show All

  • Fippy hide virtual earth logo and

    does anyone know how to remove the virtual earth logo on the bottom left corner of the map and also the map ruler on the bottom right corner, thank you! yuki I'm not sure your allowed too It is very annoying when a pushpin is under the logo and a user clicks and gets the local.live.com popup. mmm it can be done but you should confirm that it is allowed first. john. You should definitely check the Terms of Use , especially #4. You can't legally alter/remove/modify/etc the logo. I think you might be able to do so with a commercial account, but I don't know for sure. If you are interested in that, email maplic (at) microsoft.com to find out more. Cheers, Caleb ...Show All

  • ragsrags Help with PPC 2003

    Hello, We have a Windows Mobile 5.0 application that works well, however we have a client that would like to use their pocketpc 2003 devices. When changing the platform of the project we have some errors that I am hoping someone might know the answers to. Below is a list of the keywords that I am looking for a similar conversion for pocketpc 2003. Thanks in advance. John Issues: SystemProperty Dim ActiveApplication As SystemProperty = SystemProperty.ActiveApplication SystemState Private WithEvents _CradlePresent As New SystemState(SystemProperty.CradlePresent) CameraCaptureDialog (How do I code for a camera in pocketpc 2003 ) Dim cameraCapture As CameraCaptureDialog = New CameraCaptureDial ...Show All

  • Jerry Sully Scroll Form in Smartphone

    Hi guys, is other than setting the property AutoScroll to true I need to implement other thing in order to scroll the form that contains controls I have a label on the form, I see the scroll bar, but even that the label size is exceeds the form borders I can scroll the form.. thanks for any suggestion, Oren. Another thought for the NetCFv3 team. Why not make use of holding down the up/down arrow. As is this flicks between the controls and loops around the top. Rather it should smoothly scroll up and down, the focus only changing when the new control comes into view. Doesnt that sound like a good idea Hi Tom, I have also faced a similar pr ...Show All

  • elwood How can i use RTC API

    hi, I have visual studio 2005 . windows mobile sdks installed and also Wince 5.0 standard SDK installed.. suppose i want to develop one sip based application using those RTC APIs, how to proceed Are you referencing the correct libraries in your project You may have to read more in the MSDN library to find the exact names and DLLs of the libraries. Manav   sorry i am asking another question... not related to visual studio at all............. suppose i want to test RTC Client API sample programs which is give in MSDN,  whats the procedure to do that,,,, i have doubts whether to use plarform builder or embedded visual C++ IDE.......... whar type of  project to create etc etc,,,,,,,,,, ...Show All

  • RustyBadger Custom Installer and MSI Installer

    Hello Everyone, I created MSI Installer and in that installer asked the user to enter the IP Address for the web service.I am able to get the value entered by the user while installing the application in the custom installer class by using Context.Parameteres collection.The problem is, I want to pass this value from my custom installer to my actual PDA project so that users of this application will be connecting to the webservice with the IP Address entered by them while installing the application. Currently we include a .config file which contains static IP Address for the web service.If the user wants to point to a different server he will change the config file in the desktop and copy it over to PDA.but they want the entered IP Ad ...Show All

616263646566676869707172737475767778

©2008 Software Development Network

powered by phorum