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

Software Development Network >> Smart Devicet

Smart Devicet

New Question

An Easier Way
PPC 2003 SE - SerialPort - One way traffic
Remapping POWER button
C# and VB Design View won't load
connecting data with MS Active Sync, howto?
MessagingApplication with change of smsc address
keep a program window floating on the top of a current windows
IMSI reading
Check Network Connectivity and Internet Availability
UDP Client mobile Client For Communicating to desktop pc

Top Answerers

jodv
gpetrosh
tattoo
JocularJoe
magicalclick
Cammyr
Bastiaan Molsbeck
Karthik Juneni
Ultrawhack
tonyerfer
sitemap
Only Title

Answer Questions

  • yadgor2000 Change the color of a DataGrid scrollbar in C#

    Is it possible to change the color of a DataGrid scrollbar in C# That project (CustomDataGridSample.msi) doesn't compile. I had to change the extension of the msi file from .msi+ to .msi Error 1 'DataGridCustomColumns.DataGridCustomColumnBase.Paint(System.Drawing.Graphics, System.Drawing.Rectangle, System.Windows.Forms.CurrencyManager, int, System.Drawing.Brush, System.Drawing.Brush, bool)': no suitable method found to override C:\Proj VS 2005\Bromma\GUI\Custom DataGrid Sample\DataGridCustomColumns\DataGridCustomColumnBase.cs 278 33 DataGridCustomColumns Error 2 The referenced assembly "C:\Proj VS 2005\Bromma\GUI\Custom DataGrid Sample\DataGridCustomColumns\bin\Debug\DataGridCustomColumns.dll& ...Show All

  • MrZap vibrate.h missing for WM5 PocketPC

    Hi everyone! I cannot find vibrate.h in the WM5 PocketPC SDK. According to the documentation vibrations are supported on PPC now. Can I just copy vibrate.h from WM5 Smartphone SDK Thanks. Although a bit of a hack, the solution for this problem is easy: search under "Program Files\Windows CE Tools\wce420\" (or whatever your version is) for all occurrences of "aygshell.h". Open those in an editor and comment out the line "#include <vibrate.h>". As you see, the developers put this line in an "#ifdef TCP", but doing a "#undef TCP" in your own program, doesn't make the error disappear. So, you have to do the hack!! Willem ...Show All

  • Arul-R Another mscorlib.dll in mobile application

    I'm compiling very simple project for Windows CE in VS 2005 with reference to another mscorlib.dll, but application always load only standard mscorlib from Compact Framework. Why P.S. Tested on real machines with CF 2.0 That’s because mscorlib is special and is automatically retargeted to the correct one – the one which comes with particular runtime. Also I’m not quite sure what exactly you’re trying to achieve by that. There’s no way “other” mscorlib would work on NETCF as it needs to match the runtime. You can’t just swap mscorlib, you need entire “another” runtime to use another mscorlib. ...Show All

  • Chris_Chris__ expo xpath

    Does anyone have a good sample for getting an XMLNodeList from the GetCategories() soap call for the Expo API using Xpath ...Show All

  • AlexBB "No such interface supported"

    I recently received and installed Visual Studio 2005. When I create an empty Pocket Pc 2003 (or Windows Mobile 5.0) application and try to deploy it, I get a messagebox that says "No such interface supported". The actual .exe is there and I can copy it and run it on the device.. but it seems that the communication layer between visual studio and the device is broken. I get the same error if I try to deply the application to the emulator. Ive tried uninstalling and re-installing ad naseum with no success. please help! Taha My first question is that did you have Beta 2 or aprevious CTP / RC installed on the same machine Amit     Hi, While I am glad things ...Show All

  • Mateusz Rajca Idle functions

    Hello I wonder how to implement an idle function I searched the SDK but couldn't find any appropriate functions. I only found .net Application.Idle but since I don't use .net it's not for me. Could anyone please give me some pointers Many thanks, Martin Malek Thanks Avinash I'm not familiar with MFC. I'm currently in a native C++ Smartphone project and I'm not able to find any references to WM_IDLE in the SDK. Any way for me to use MFC with my Smartphone project Many thanks, Martin Malek Not sure what you mean by "idle" function. Perhaps Sleep() would do You can call it with 0 to release CPU time. Ilya Sorry for not being clear enough. What I need is an idle message to be sent via the messag ...Show All

  • Simmy7 Resource DLL still active

    Hi all, We made a .Net DLL that is the managed end of an unmanaged - managed bridge. There is nothing in the DLL besides the wrappers to the unmanaged function calls and the P/Invokes. When I terminate the program the managed DLL stays active. Any ideas on why it would stay in memory Do you have to terminate a managed DLL in some way Alex, Nope. Everything is a command-response call, no threads. I did notice that it's only when I am debugging and the debugger terminates in an abnormal fashion, like an uncaught exception. It does not seem to occur when I run the program outside of the debugger or the debugger terminates the app normally. Ah, I see. That's entirely possible. Sometimes the debugger fails to terminate the ...Show All

  • jesy51 Populate ImageList from Urls at run-time?

    Is it possible (preferably in C#.net) and on Windows Mobile 5.0 to populate an ImageList with Images (JPEGs) from some URLs (this is part of a search result) and will need to be done at run-time. Any help would be much appreciated, as I can't really seem to find a way to do this. Well the code is the same erxcept where I use a StreamReader you just use a Stream. Then construct a Bitmap from the Stream. One of the bitmap constructor overloads accepts a Stream. Before setting the image to the picture box check the width/height of the image and see if it's the same as what you expect it to be. Okay, this isn't working. Once it gets to pic ...Show All

  • AksaiGora How to remove the "x" button at the upper and right corner on the interface?

    Hi, I am using VB.net and Visual Studio 2005 to compile a program for a Pocket PC with MicrosoftR Windows Mobile 2003 Second Edition. When every interface is opened, there is a "x" button at the upper and right corner on the upper blue bar of the interface. This blue bar is always there, and users can click this "x" button to close an interface. However, I would not like to ask users to use this "x" button to close an interface. What I want to do is just to ask users to close interface by clicking a "Exit" button to close interface, and this "Exit" button is put onto the interface through the design part of Visual Studio when I compile this program. So How can remove the "x" ...Show All

  • akuehn Copy file from PDA to server

    Hello, On the file-server is a shared map. Now i want to copy a file from my PDA to the shared folder. It works fine with file.copy(test.txt,"\\Server1\Testmap\test.txt) when the server is on the same networksegment. Problem is that the server is not on the same segment so I've got to copy it to the IP-adress of the server. File.copy(test.txt, \\192.168.0.1\Testmap\test.txt ) doesn't work from the PDA. If I try this on a desktop in another network-segment then the server than it works fine. What should I change to copy the file to the IP of the server Thanks by Advance Hi, First you may want to make sure you can actually access the server via the IP address, by opening a HTML page hosted on ...Show All

  • Tuk Invalid Cast Exception ... making me CraZZZy

    OrderDB.cs -------------------- public ArrayList GetOrderRowsByOrderID(int orderid) { conn = new SqlCeConnection(connstring); cmd = conn.CreateCommand(); cmd.CommandType = System.Data.CommandType.Text; cmd.CommandText = "select p.productid, p.productname,p.price, orow.quantity, orow.discount from orderrow as orow join product as p on p.productid = orow.productid where orow.orderid = @orderid"; cmd.Parameters.Add("@orderid", SqlDbType.Int, 4); cmd.Parameters["@orderid"].Value = orderid; ArrayList OrderRows = new ArrayList(); try { conn.Open(); SqlCeDataReader rdr = cmd.ExecuteReader(); while (rdr.Read()) { ...Show All

  • Ayhan Yerli &amp;#40;TR-NL&amp;#41; Newbie. I want to enhance the image quality.

    Hello, this is very basic, but I need to know the power and flexibility of this tool. I need to see in a superior level of detail, in 3D view, a city with a few mounts... ( I don't need buildings, just the terrain ) But everything that is at a certain distance from the camera looses quality (geometric detail level and image quality). I know this is done in order to increase render speed, to save memory and bandwidth... but I need more quality, and I'm ready to pay the cost. Is there a workaround to increase the quality, someone knows a website, parameter, anything that might help me please I need it, even if it takes quite a long time to display one single image. I need excellent quality. Thanks in advance! Albert G ...Show All

  • domhorton Layers on and off

    I am develpoing a map that contains many pushpins in a small area. I would like to turn them on and off by using checkboxes. Doe anyone know how to go about this So far this is what I have come up with. I can turn more than one layer on but I can't turn them off. This is my code: <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; var layerid=1; function GetMap() { map = new VEMap('myMap'); map.LoadMap(new VELatLong(45.443452 ...Show All

  • Jeff Bramwell How to handle a message before the client displays it

    Greetings, I'm programming in C# with Visual 2005. I'm trying to implement an addin for WLM that will make some treatment on an incoming text message. So, I'd want to wait the end of the treatment to display the incoming text message into the "chat window" of WLM. When I handle the event IncomingTextMessage of the MessengerClient class, the text message is first displayed, and then, the event is handled. But I'd want do do the opposite: first handle the message, then make my stuffs, and finally display it. Is it possible And how Thanks a lot. R.P. r0d wrote: Maybe it is possible to do that with the Activity SDK I don't see anything talking about this kind of development. Why don ...Show All

  • idahogurl Blocking Live Messenger

    Hello, How do you block Live messenger over a network There doesn't seem to be any documentation on the Microsoft site to resolve this issue - I have searched through these forums as well, but no joy. Any help would be gratefully appreciated. Thanks. Why would you want to do that ;-) I guess blocking connections from or to the ports it uses should work for most of the cases. L ...Show All

252627282930313233343536373839404142

©2008 Software Development Network

powered by phorum