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

Software Development Network >> Smart Devicet

Smart Devicet

New Question

Windows CE Localization Problem
VB 2005 & SQL Server 2005 Express
clickable polyline/polygon
Form disappears automatically
Snapshot Share???
About messenger api and vista problems
CameraCapture
BUG: GetRoute - VEDistanceUnit is forgotton if select placename dialog is shown.
Creating Smart Device Setup project in VS 2005
Platform Builder error 126

Top Answerers

Ahmed Chaudhary
Uwe82
GRK
ReneeC
Fusion54
Rogma
Victor BA
Ice_
Kaiser28
hazz
Topix: Frank Sinatra
Only Title

Answer Questions

  • Aazad Erratic behavior when running 2 winforms apps

    Hello All, I am testing a winforms application that will start a thread for a new winforms application and will allow the first application to run tests against the second in WinCE 5.0. If I run two winforms apps at once, it seems to cause erratic behavior. I am using cf 2.0 and at first I tried a console app as the initial application with a winforms app being controlled and that was worse. The test UI app is mimicked closely to James McCaffrey and his testrun501 example: http://msdn.microsoft.com/msdnmag/issues/05/01/TestRun/default.aspx This original app worked fine in desktop winforms as that supports the STATHREAD attribute (single thread apartment) which cf 2.0 does not. Any thoughts or suggestions would be greatly a ...Show All

  • WHatsWrongsong PPC2003 connect SQL Server through WIFI, howto?

    Please guys..I'm waaayyyy behind schedule here..Need Help! I have 2 applications, one is Windows Form app and the other is SmartDevice app (PPC2003) : the question I want to ask is, how to connect my PPC to SQL Server through WIFI.the problem is always error everytime I open a connection : " System.Data.sqlClient.SqlException: SqlException at System.Data.sqlClient.SqlConnection.OnError() at System.Data.SqlClient.SqlInternalConnection.OnError() ", but on my Windows Form works fine!here's my code: Dim connection As New SqlConnection(" Data Source=192.168.0.1;Initial Catalog=MyTable;Integrated Security=True ") connection.Open() Dim queryString As String = _ "SELECT name FROM Customer&quo ...Show All

  • zille Command Button (C#.Net VSN 2005)

    Hi I have 100 buttons on GroupBox of a form. ie., Button1, Button2....Button100. I need to change the Color of their texts in a single event. If so far, I don't need to mention "this.BtnSurah11.ForeColor = System.Drawing.Color.Maroon;" for each and every buttons. So is it possible to build up a loop for 100 sequences which define the object (button), from the loop can we change their property For example int i; for (i=1;i<=100;i++) { String Str = "Button" ; Str + i .forecolor = System.Drawing. Color .Maroon; } or foreach ( Control control in this .Controls) { if (control is Button ) ...Show All

  • Novozh 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/ My apologies, I didn't realise this was on topic.   I meet some trouble too: http://kenico.free.fr/livemess/test.php Display seems to be ok, I can select contact, but when I send information, nothing happen. I think the issue is from the channel.htm file, cause with or without, the behavior is the same. The channel.htm file is in the same location that my "test.php". Is it a problem from my provider Do you have a way to display error message to debug this Regards, Kenico Hi, i cant download the http://de ...Show All

  • dhall241 Console Application close

    hi all, I want to close the console application, when the work is done. but it does not get closed. wht to do plz help hi, so u mean by Application.Exit(); or something else If this, i tried, but it does not kill the process. Simply exit your application by returning from Main(). Here's a simple console application which starts and terminates. As you could see Application class is not involved at all, it’s only used by GUI applications. If you have threads, make sure to stop them, application won’t terminate until all threads are terminated. using System; using System.Collections.Generic; using System.Text; namespace PPC_CS_V2_Cons_1 ...Show All

  • sarathy sockets communication

    Hi, I am using sockets, sometimes it work on the emulator and sometimes it hangs and cannot read the streams. would the same thing occur in the real device How Can I test socket communication on real devices without WiFi or GPRS Well it depends really, are you connecting to another PC I assume you will be. you need to establish a connection to the PC, connecting it via USB or Bluetooth or Infrared and establish/connect via ActiveSync. This will create a connection link between the mobile device, and the PC. You can then connect to each other, connection from the mobile device app by entering the IP Address/computer name to connect to with the specified port ...Show All

  • XNA Rockstar removable drives / usb drives

    Is anyone else experiencing an issue with removable drives with Visual C++ 2005. We are running VS Studio 2005 in a classroom setting. Students have absolutly no problem using removable storage with VB. However, C++ will not access these drives correctly without looking up or without extreme performance degradation. We did not have this problem with the previous version... Thanks in advance..... ...Show All

  • GKW82 Enhancing UI for my samrt application

    Hi there, I am developing an application on smart device. I am facing some problems in finding appropriate 3d icons and custom controls (like 3d scroll bar) for my interface. Does anyone has any information from where I can get some nice icons and controls to decorate my application Regards Few more to add - http://www.newfreedownloads.com/Software-Developer/Miscellaneous/Instrumentation-Widgets-for-Mobile-Devices.html and http://www.componentsource.com/features/xgraphp/index3.html There are 3rd party controls available for various charting, graphing needs. You can check some at http://www.resco.net/ and http://www.softwarefx.com/sfxNetProducts/pocketCfxNet/ Manav ...Show All

  • exal How to intercepting EMail Recieved in pocketPc Outlook progamatically.

    Hi , I need to intercept the Email while i received the emails to my pocket outlook. I done the SMS interception part. Help me to find the solution. Thanks in advance. Prasanna Vignesh. Thank you for the tips. By using the above reference i can able to get hte notification of the unreaded messages. and able to process it. but i need to get the email at the moment it received to the mobile whil click the send and receive in context menu.. Thanks you If you're developing for Windows Mobile 5, have a managed API to do that. Take a look at http://www.developer.com/ws/pc/article.php/3547381 for the "State and Notification Broker API". [ ]'s Fabio Lopes You can ...Show All

  • nattylife share common data between forms

    Here's the scenario: Main Form - in the Load function I instansiate Communicationclass. I also have a button which fires up Sub Form. Communication class keeps track of the server IP, the warehouse number and the listener port. It has getter/setter functions. Sub Form - needs to display the server IP and allow user to change the warehouse and port. Problem is, once the load of Main form is completed, the instance of Communication is gone, gone, gone. So, how do I get it to stick around till I'm done, and how do I make it available to sub Forms Thanks. got it, thanks!! Keep the instance or copy data from one form to another or create class to hold the data in and share ...Show All

  • Alan Faux map.Find and longitude/latitude problems

    Hi, I have problems using the Virtual Earth Find function. I am trying to first locate a position using the map.Find() method, and then get the longitude and latitude for that position. The problem is that if I call the map.find wih the first parameter as ' ', the onFindResults function does not get called. Further, a map.getCenter() call right after the map.Find call returns the wrong coordinates. A click on the "locate" button, how ever, returns the correct coordinates. How can a output the correct coordinated without the need for the button Or, how can I get the onFindResults function to be called when the map.Find method is finished My problem is show in the example below. The alert box show the wrong coordintes the first t ...Show All

  • Daffodils [C++] 'ifstream' : undeclared identifier

    Hi, I'm trying to deal with files on windows mobile 2005, i'm using VS studio 2005 beta 2. When i include #include <fstream>   No probleme but as soon as i try to create a fstream a ifstream or a ofstream i get an error ! Error 1  error C2065: 'ifstream' : undeclared identifier d:\Mes documents\WorkInProgress\C#\WinTelecopie2005\LogMachine\LogMachine.cpp 9    So here is my question, does these functions are supported on windows mobile 2005 And if yes why i can't use them PS : In the fstream file in evc8 include folder i found a declaration of basic_filestream even whith that i still got an error Error 1  error C2065: 'basic_ifstream' : undeclared identifier d:\Mes do ...Show All

  • Rajy Rawther thin and rich apps

    Hi, i’m starting with .net compact framework and i would like to understand a few things better. for what i read, there are rich and thin apps. in thin apps, the main goal is to design a web mobile page to access from the mobile device. in rich apps, the main goal is to make a app than runs on the device itself. so far so good, i guess. :) i also read about asp .net mobile controls and smart device programmability. this is what i couldn’t understand quite well. are the asp .net mobile controls to make thin clients and the smart device programmability to make the rich clients. when creating a new project in VStudio 2005 i only see the option Smart Device Application. This template is for rich clients, right ...Show All

  • Maziar Rezaei Sending Files to Handhelds

    Hi, I want to send a configuation file to a hand held. Here is the scenario: I have 1000 devices all runnning the same application. Depending if you are in sales or in help desk we might want your device application to preform slightly differently. So, I would like to be able to send this configuration file directly to the device, a broadcast if you will. Does anyone have any suggestions or thoughts on this Thanks, Jesse Hi Alex, Thanks for your reply. I was actually thinkng along those lines as well. I was hoping there might be some service I was not familiar with. Thanks again. It's always hard to push something on the device due to the dynamic nature of the network identifiers for a device. ...Show All

  • catweazle Saving message history with contacts

    Hi, I have a new computer with Windows Vista. This morning I tried to save my message history of a chat I had just had with a contact. Highlighting it i tried to right click....nothing comes up at all (no options). When I tried to drag the conversation/message history into a file to save it, it just jumps right back to where i drag it from. I would like to save all of my message histories in a folder how do I do this ...Show All

474849505152535455565758596061626364

©2008 Software Development Network

powered by phorum