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

Software Development Network >> Smart Devicet

Smart Devicet

New Question

How to keep a regkey when uninstalling CAB?
emoctions
Pushpin Onclick Event?
VE still not working...
Filtering Address based on Country in Virtual Earth
.net CF - How to get the current directory where my app is running??
converting a Pocket PC app to a WINCE 5.0 app in VS2005
binding
how to minimize the form?
Packet Sniffer - Windows Mobile

Top Answerers

WehSo
Wendy S
GetCode
adman666
sven22
DevDiver
Angus Leeming
Windows Mobile 5
IntMain
Akamba
BMGridXML
Only Title

Answer Questions

  • redshock MSMQ Book Order Application Sample

    hi i have taken this example at http://msdn2.microsoft.com/en-us/library/ms180970.aspx this is used to transfer messages between device and desktop queues this application run ok but it doesn't send the messages to desktop queue i am using vs2005 and and emulator pocket pc-wm5.0 please suggest thanks arvind hi i have installed msmq service on my emulator and it is running but sir i want to just send messages to remoting queue that is to desktop pc queue ,on desktop msmsq service is also running whenever i send messages no error comes but queue doesn't get the messages as queue exists on my system i am using MSMQ Book Order Application Sample at url http://msdn2.microso ...Show All

  • Chaitanya15 Little Help

    I am using vs2005 and when I click to deploy my software to my handheld for testing I get the message "loading symbols for c:\Program Files\Microsoft.NET\SDK\CompactFramework\v2.0\Debugger\BCL\mscorlib.dll" This message shows at the bottom and it never gets past this point. It never actually deploys and runs my software. Has anyone ever seen this error. That is all right, but I need to see what version of .NET Compact framework you have installed on the device. Please go to the device's \windows folder and start cgacutil application - it will tell you what version/s of NET CF you have. Having only .NET 2.0 as you mentioned is is not enough - you should have .NET Compact Framework installe ...Show All

  • Adam Nemitoff not working any more ??

    i have not been playing with this in a while and i use Netscape 7.2 and has worked ever since the map stuff came out. now all i get is a blank screen, help and no i dont want firefox nor I.E ------------- <html> <head> <title></title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <script src=" http://dev.virtualearth.net/mapcontrol/v4/mapcontrol.js "></script> <script> var map = null; function GetMap() { map = new VEMap('myMap'); map.LoadMap(new VELatLong( 29.38875638104738, -94.86505508422853), 14 ,'h' ,false); } </script> </head> <body onload="GetMap();"> ...Show All

  • SQL_newbie Dynamically invoke web services in CF

    Is it possible to invoke a web service dynamically(without adding web reference) in compact framework 2.0 I find many classes like Code Dom and Web Client missing. Unfortunately, there is no way to generate the proxy code that is required to communicate with the web service dynmically. NETCF does not have reflection emit or code dom due to size constraints. If you had a small set of web services that you hit then you could have the proxy for these web services predefined. Also, if the web services all expose the similar interface, you can change the url in the proxy that's generated to communicate to different servers. Thanks, Sandy ...Show All

  • CDFAUX New SSL handshake exception starting today

    Hi, I am receiving a SSLHandshakeException starting earlier today. We have had no problems and have been running smoothly for the past couple months on the API. No changes were made from yesterday to today. Please advise. We are running on Java with Axis client. The error is below: Error: Remote host closed connection during handshake com.sun.net.ssl.internal.ssl.SSLSocketImpl.readRecord(SSLSocketImpl.java:742) Has something been changed on the SSL This is occurring when trying to update bids. Thanks, Luke Just like everyone else in this thread, we see the same thing. If we try enough it sometimes gives a different error (presumably due to different servers behind a ...Show All

  • Francis Shanahan Installing VMNet

    Hi, Searched the forum but can't find an answer to what is probably a simple problem. I am trying to run the Standalone Device Emulator 1.0. It requires installation of the VMNet device emulator. I installed the driver, it shows up in the Add/Remove program list, but it doesn't appear in the network connections. When I run the emulator, I don't have an option to connect to VMNet, so it appears the service has not started. I don't see a VMNet service listed, so I don't know how to start it. I'm missing something here. Your help would be appreciated. Jeff There will no adapter there listed VMNet. VMNet driver takes its name from current network card name. You are connected to correct network card. You can ...Show All

  • Alessandro Camargo .Net CompactFramework 2.0 data question

    Hi everyone, Does the .Net CompactFramework 2.0 support the System.Data.Odbc namespace I'm using VS 2005 for a CE 5.0 project and I need to connect to a database via ODBC. Thanks in advance, Dave You can do it through some proxy like Web Service. I've got a wireless CE 5.0 device and I'm using VS .Net 2005 and I need to hook into a Pervasive SQL database. Any ideas Thanks, Dave Neither NETCF nor Windows CE support ODBC. ...Show All

  • Alexnaldo Santos Status property on AdCenterCampaign

    Hello, When are we going to get the status property on the AdCenterCampaign object I can pause and resume a campaign using the UI. It's very anoying that we can't see this using the API and that we cant pause/resume a campaign. Simulating campaign pausing, by pausing the orders is an ugly hack, when you guys could probably implement campaign pausing/resuming in 15 minutes on your side. Best regards, Peer Jakobsen I second that. We had a big problem yesterday and needed to pause all accounts which was quite long and tedious. It would be nice to be able to set / force the AccountStatus property to active or inactive. In fact either PauseResumeAccount or PauseResumeCampaign are much needed ...Show All

  • bbossi Request to add Birthday and Anniversary

    Hi, Danny! Please add two fields (attributes of Contact) to the Contacts Control: Birthday and Anniversary. I'm planning to use them in my Birthday Reminder application . These fields should be added: - to the " dataDesired " element - and to the "contacts" Argument of " ContactsControl.createContacts " function. Thank you. -- Yuri Hi Yuri, Yes, Windows Live Messenger uses the same Windows Live Contacts database as the Contacts Control. However, that doesn't automatically mean that all apps that read from the database know what to do with all the data they find there. The contacts database architecture supports a core static schema as well as application specific schema extensions (an ...Show All

  • Bernd Wechner Filestream IOException handling when device full

    Hi, I'm developing a test app to stress the low persistant storage space scenario and have stumbled onto a rather nasty scenario which I simply don't seem to be able to resolve with the .Net CF v1.0 API set. In a nutshell, I am attempting to do the following when there is little or no available storage space left: System.IO.FileStream file = null; try { file = System.IO.File.OpenWrite(fileName); file.Write(somedata, 0, datalen); // Do a number of these file.Flush(); } catch (System.IO.IOException) { } finally { if (file != null) { file.Close(); } } Sometimes, either the file.Write or the file.Flush will generate the exception - from which point it appears to be impossible to recover gracefully as the file.Close wi ...Show All

  • Xelestial GPRS Disconnection

    I have a small app that switches between 2 gprs connections. The call to ConnMgrReleaseConnection does not stop the current connection as stated in the docs, does anyone know a fix for this. thanks www.dotnetremoting.com GPRS Connector Component Thanks for the help Anthony, I have tried to use the Ras stuff but get a consistant error message 632 which says the structure is an invalid size, and i cannot find a fix for it. The Structure is and code are as follows [ StructLayout ( LayoutKind .Sequential, CharSet = CharSet .Auto)] public struct RASCONN { public Int32 dwSize; public IntPtr hRasConn; [ MarshalAs ( Unma ...Show All

  • canadian_coder Using Msoft Access data arrays in VE

    I am doing a proof of concept using VE to show staff and equipment locations from an internal webpage. I want to be able to call data from the resource database into VE to map these entries. Is there a solid array functionality that I can tap for this -Patrick PS: Brand new to forums and a (now) rusty coder so please be kind regarding my deficiencies! *grin* Thanks guys! However...(you knew this was coming right ) my array has only street addresses. Now I can go out and grab one of the online latlong conversion utilities and manually input the lat/lon data, but i was hoping to use a recursive parse to build the data set in the map function.... -Patrick Patrick, The best place to start is the interacti ...Show All

  • Beastmen what use instead RAPI?

    Hi, in past i was using RAPI.LIB - native technology to comunication between PDA and PC. Does anybody know about some new technology based on .NET Thanx You can use RAPI from .NET (not the .lib file but DLL). OpenNetcf.org has a managed wrapper for RAPI. ...Show All

  • Marlon Smith Maintaining C# Code

    I am working on a C# project for the Compact Framework. I have noticed that debugging for the compact framework can be a pain (can't change code durring run time, takes a long time for the code to start using the emulator or a handheld device, etc). I have also noticed that most of the code files (class.cs) can be used in a normal C# desktop application. I would like to be able to create a desktop application that utilizes the code that I created for the Mobile Application, and still have my Mobile Application, and have them share the same code files. That way, changes in one project would change the files in the other project, and I can quickly code in the desktop application, and check for any problems in the Mobile application. Has a ...Show All

  • razerredblue CF2.0 Image Button SizeMode Help

    I have created Cf2.0 ImageButton based on other postings. It is working fine. But I am unable to create SizeMode property like the PictureBox has. Can some one help me on this I have image size of 16 x 16. But I want to have imagebutton of 32 x 32. When i place this image on this button I do see the extra places are empty. Image is not filling the whole box. How do I achive that One way is recreating the image with 32 x 32. What is the way to add stretch property to imagebutton Thanks, Something similar to this: public enum ButtonSizeMode { Small, Big } public class ImageButton : Button { private ButtonSizeMode sizeModeValue = ButtonSizeMode.Small; public ButtonSizeMode Size ...Show All

616263646566676869707172737475767778

©2008 Software Development Network

powered by phorum