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

Software Development Network >> Smart Devicet

Smart Devicet

New Question

Setting button caption or static text with SetDlgItemText() or SetWindowText() is not permanent?
Tracking windows mobile download site
IShellNotificationCallback
Windows CE .NET or Windows Mobile 2003
Getting the locale of a user
Custom Wait Cursor
regarding the storage of permanent values
Calculating boundingbox
IRDA file transfer problems
How to free resources on windows form

Top Answerers

Beth31
bharathi_tunes
BobishKindaGuy
Stéphane Beauchemin
Constantijn Enders
cnishigu
Bill Reiss
Cyril Mathey
Scott Chang
chrstdvd
XGuru.com, Inc.
Only Title

Answer Questions

  • rmcmullan Unable to get the messenger APIs

    Hi All, I have been trying to download the messenger live SDK from the links on http://dev.live.com/messenger/default.aspx app=messenger The .zip file that gets downloaded only has a compiled html help file. Please help me out here. How do I get the required SDK The help file actually IS the SDK. Didn't you read it Just follow the steps that are described in the help file to make your activity. ...Show All

  • ChrisMcCabe Lack of precision when creating pushpins

    Hi, i just noticed, VE lacks precision concerning the lat lon values: pin= new VEPushpin(2, new VELatLong(54.9077601637691,8.31008861772716), "images/Bahnh”fe.gif" , 'Bahnhof Sylt' , '' );map.AddPushpin(pin); pin= new VEPushpin(3, new VELatLong(54.90776016376916754474),8.31008861772716654674), "images/Bahnh”fe.gif" , 'Bahnhof Sylt' , '' );map.AddPushpin(pin); both pins result in the same coordinates, 54.90776016376916754474 ^ the 7 is the last number VE interprets, the rest is cut off. Experiments with parseFloat didnt succeed either. Any ideas Jeff, I have found 5 decimal places which is approximatly 1m on the map to be fine. Unless your tring out map cruncher ...Show All

  • Swarna Mapinfo co-ordinates

    Can anyone help in identifing the projection used in virtual earth to display. We are importing coordinates from mapinfo tables in Irish transverse mercator grid and converting to lat/long but the points are not displaying in the incorrect position. Any help appreciated. VE is using data from a third party to translate the lat/longs onto the map.  Also if you can give us your lat/long information to check that would help too Thanks Derek. Here is a reading from Mapinfo: Easting 247118.68 Northing 198208.55 -7 17' 51.260496 53 1' 57.058752 and the same in decimal degrees -7.29757 53.0325 Looked at your latlongs -7.29757 53.0325 Interestingly, I'm stuck in the middle of the indian ocean according to MWS ...Show All

  • Luis Simões Displaying a loading... Form

    Hi, I am using socket communication and it takes some time to connect to the server. I want to display a form with a progress bar and till the response is received from the server, is it possible to do so Thanks Any sample code plz. well socket communications should be running on a thread as reading/recieving data will most likely make the UI looked hung/non responsive. So what you could do is when they hit "connect" to display a progress form, and when there is success in connection, to raise an event to close the progress form down. only once, to indicate that yes its connected, which you use a delegate method to talk to the UI But you ...Show All

  • snowmoon Symbol Barcode Reader

    Hi, When I use the Pocket PC 2003 emulator with my application that uses the Symbol.dll and Symbol.Barcode.dll (version 1.0.5000.7) the following line throws a NullReferenceException. this .MyReader = new Symbol.Barcode. Reader (); The same line (and the application) works fine if I use the version 1.0.5000.3 of the Symbol.dll and Symbol.Barcode.dll. Any ideas I am using VS2005 and CF 2.0 Thanks, -Suri It's a long time since I worked on that, but 1. As I can recall, in case of VS2005, the Symbol SDK installation package didn't work correctly, and some manual steps were required. Check the Symbol's web site for details. 2. If you are experiencing the problem on the emulator ...Show All

  • KristenB MSN MESSENGER

    I am using Visual Basic 2005. I would like to make an application which can control some options of MSN Messenger like sending an instant message. I would like to know which dlls I need (if any) and any references (if any). I would like someone to show me hiw it must be done. Thanks GlennZarb wrote: When I try to run it i wont mork because the application has failed to start because rtl70.bpl was not found. What can I do I am sorry. I got it. I will fix it at once. You can use dotMSN if you use .NET. I think it seem not be a native VB SDK you can send instant message. I can convert my VCL component to VB SDK if y ...Show All

  • ogtr Access Remote files with access control

    How do I can access a remote files on the network share folder will access control On WM5 I adding a code to get the files list correctly, if the ShareFolder haven't access control at below sFile = System.IO.Directory.GetFiles(" \\ComputeName\ShareFolder ") But If the ShareFolder with a access control, I need using WM5 File Explorer to connect the network first. Is there any method, I can made the connection in my coding. Hi, Yes, you can P/Invoke to the OS to set the name and password you would use to get the files. The name of the API is WNetAddConnection3: http://msdn.microsoft.com/library/default.asp url=/library/en-us/wcecomm5/html/wce50lrfwnetaddconnection3.asp Cheers, Anthon ...Show All

  • Steve Youngs Using modem for data connection

    Hi, I established a data modem connection using TAPI ( http://msdn.microsoft.com/library/default.asp url=/library/en-us/wcetapi/html/cmconsampletspsourcefile.asp ) Now I want to send and receive data, but I can't find any function. I have a pointer to established call, pointer to opened line, but I don't know how to use it. Can someone help me (program is written in c# and run on WM5) Thanks Ivana Ask user to provide COM port number or try opening all available COM ports and see if you're getting expected response to particular request. Both modems are GSM. I want to establish connection from one modem (in MDA) to other, send and receive data(like hyperterminal do). For establishing ...Show All

  • MMEZIL direct access to an usb stick?

    Good morning. Is there any possibility to acess an usb stick (over an active usb hub) from a pocket pc (for backing up data in the field) Thank you for taking the time Robert Stankowic No, USB clients can’t talk to each other. You could use flash cards instead if your device is equipped with one or use device with USB host. ...Show All

  • Alex Farber MainMenu

    Hi there, i have a form with a MainMenu, and i'm trying to solve 2 problems: 1) if i show a MessageBox, closing the message box, the menu disappears. Solution: whenever i close the MessageBox, i do a kind of a "reset" to the menu: - this .Menu.Dispose(); - this .Menu = this .mainMenu; Well, it works, but is it a good solution 2) i click on the menu, it opens the menu items, and then when i click one of the items, i have a event handler that makes something. What i need is to close the menu immediatly after i click on a item. Solution: (i've tried doing the same thing i did above, including those lines in the beginning of the event handler, but it doesn't work.) Any ideas Thanks in advanc ...Show All

  • MigiTheGuru native camera event listening

    Hi, I am newbie.I want to know the API of camera related activity. let suppose my application is running and i have taken new picture with my native camera how i detect that new picture is in . Is there any event  that inform my application that new picture is taken from the camera  .   I am using C++.net 2005  windows mobile sp5.   I dont want to create camera dialogue. let suppose my application is running in the background and  I have taken the photo. how i will detect it that new photo or video has taken i want to listen the native camera event through my application. how i will manage it   Thanks -Salman     ...Show All

  • Ravidhari Custom polygon filling

    Hello, All! How can I fill some polygon on the map for boundaries of geo location For example for some state of USA. I.e. I want to paint over some state on the map. To understand what do I mean please redirect this page http://www.blogthevote.net/veshapefilec.htm and push Load button on it. Thanks I look for Point in Polygon in this forum. I have found out that I need get the list of LatLongs for city/state/country. And then I will easy fill polygon for state or city. But how can I get this list of LatLongs Is it a free or not What do you mean. I don't know about clickable polygon something. Please put here an example or an example reference. Thanks. ...Show All

  • nattylife Java & Windows Live Mesenger Compatibiliy Issues with Windows Vista Ultimate 64 bit

    Ok! I hope someone out there will be able to give me a hand with respect to this issue! I've recently changed from XP over to Vista Ultimate X64 and I have to say I'm starting to get over (and rather frustrated) with the whole "WOW" experience that is Windows Vista! The lack of drivers I can live with but problems with software built by Microsoft is a whole over ball game. Specifically, what my problem relates to is that in connecting up to WLM, the program only takes me as far as the contacts menu before it subsequently crashes with only a pop-up box stating that "Windows Live Messenger has stopped working" whilst simultaneously attempting to obtain a solution of the internet which is consequently not forthcoming. In seeking to obtain ...Show All

  • Reiner Obrecht Maximum Segment Size

    Hello, I have to know what is the Maximum Segment Size (MSS) on device's network adapter. Basically i can not allow TCP packets fragmentation. I cannot force it on .NET CF, because this is not supported. Mayby somebody knows how to do it (for example by knowing MSS or MTU). Device will be working in specific network. Application have to be able to get to know MTU or MSS programatically. It can not be hard typed. What i discovered is, that the function that i need to use is: GetAdaptersAddresses, and it is contained in iphlpapi.dll library. What would you recommend doing, when I can not find iphlpapi.dll on my device, as well as in: C:\Program Files\Common Files\Microsoft Shared\CoreCon\1.0\Target\wce400\armv4i. I chbecked sys ...Show All

  • Nath_UTSA Help! Is there any way to Communicate/ transfer data From Desktop Application (Winforms) and Mobile Apps (NET CF)

    Hello, Is there any way to communicate/ transfer data from Desktop Application written using .NET and Pocket PC Application written using NET CF . Any help would be appreciated. Thanks Karthik i would be sending string in the form of bytes from desktop app to pocket pc app and vice versa . Thanks Karthik There are many ways you can achieve this: a. Use RAPI b. Use web-services. Write web-service on the desktop which exposes the data that need to be transfered. On the device, use that web-service. Manav Manav, thanks for the suggestion .Looks like this is the best way to deal with the problem. Thanks Karthik Best w ...Show All

757677787980818283848586878889909192

©2008 Software Development Network

powered by phorum