Software Development Network Logo
  • Visual Basic
  • SQL Server
  • .NET Development
  • Visual C#
  • Windows Forms
  • Visual C++
  • Windows Live
  • VS Express Editions
  • Visual Studio
  • Architecture
  • Windows Vista
  • VS Team System
  • Visual FoxPro
  • Game Technologies
  • Visual J#

Software Development Network >> Smart Device

Smart Device

New Question

New Windows Form adds a 'mainMenu1' control
VS2005 PDA deployment
VS 2003 and 2003 Pro: Best solution for Integrated CE.NET and Desktop apps?
Cant connect to active directory server
Missing assembly information in converted project
ActiveSync Disconnect when Smartphone connects to GPRS
Controling Input Panel with SHSipPreference
Get Device ID from Desktop
scrollbar in Compact framewok windows form
Mail API

Top Answerers

rxbrooks
Alan Ren
agjevik
wissgtbob
Derek Ekins
Jeffrey De Pretre
Raja Ratheesh
Pablomano
jjswildfire
Stefan Herholdt
Topix: Retail
Only Title

Answer Questions

  • Yashraj C++/CLI?

    I distinctly remember being told that it would be possible in VS2005 to use C++ to develop using the .NET CF. I can't find any way to create such a project however. What gives I see. I doubt, however, this new term would stick as old one is actually describing the nature of the product really well. Besides, it’s too late, the term is already out. Compare, for example, Google search results for both. Perso ...Show All

  • dragon_ballz96 Get Image Data of Pocket PC Camera

    Hello... I'm a newbie! I want to know if it is possible to capture the data of a pocket pc camera Maybe with C#... or another language Can you help me Regards, Jacqueline. You can use whatever’s provided by manufacturer and/or 3 rd parties. If nothing's provided, you can not capture image on this device. Hm... my equipment: a pda with windows mobile 2003 second edition and a compact camera by ...Show All

  • Hemant K DataGrid paint event on DataSet data modification

    Hello everyone! I am new to this forum and .NET CF, so i'm sorry if my question might seem too easy. I an trying to build an application where my datagrid displays dynamical data. I am using a DataSet to store data that i receive through a HTTP connection. One column must have cells turn gray if new data is inserted into them and remain that way for an amount of N seconds. I have used reflection to paint the cells, after registering ...Show All

  • Dmarq Socket c# programming on windows mobile 5.0

    Hi please look at this link it my question based on c#! Thanks! Kin http://forums.microsoft.com/msdn/ShowPost.aspx postid=299042&isthread=true&siteid=1&authhash=6dcb696aa96f08b031e59fda92f84b7173ab8be0&ticks=632779917540143020 Hi all, I've experiencing an identical problem to kinpin9 above: I want to establish a socket connection via port 8002 over GPRS on a WinMobile5 device. Hey Mr. Wong, if you're still about, ...Show All

  • PaddyK Problem drwing a form

    Hi, I would like to make some actions in the form directly when I launch this form but the form is drawing after doing all the actions and in Make_Actions(), I'm launching a lots of thread... public RegistryForm(string BackupName) { InitializeComponent(); this.BackupName = BackupName; Make_Actions(); } So I was trying to put some code like : this.refresh(); this.ResumeLayout(); this.update()... ...Show All

  • yuvals Tracking mouse position between 2 panels

    hi, I am developing a project in vb.net compact framework (pocket PC Application ). My form is distributed into different panels , I want to track the mouse position as the mouse is moved between the two panels. Any inputs on this one Thanks Take a look at this quck start sample: http://samples.gotdotnet.com/quickstart/CompactFramework/doc/enterleave.aspx It should give you an idea how to ...Show All

  • Rob Chandler PPC device problem w/ VS2005 application

    hello all, i have a program that i upgraded from eVC to VS2005 using the eVC++ upgrade wizard add on. i was able to successfully upgrade the application (or at least i think i did), and it compiled correctly in VS2005. when i transferred the app over to the PPC device (running PPC magneto) and tried to run it, i get the following error message: "The file 'app name' cannot be opened.  either it is not signed with a trusted certificate, ...Show All

  • Alias2006 Databinding to a UserControl

    Are there any examples of how to databind to a UserControl I created a simple user control with three radio buttons (values=0,1,2). I'm trying to bind to an integer field in a dataset. I've tried binding to the tag property of the UserControl and raising a PropertyChanged event anytime a radio button is clicked without success. Any ideas Hi Tom - DefaultBindingProperty attribute is a designtime onl ...Show All

  • Nikolas134886 SqlCeResultset and Bindingsource

    I have created an entry form by creating a resultset data source (Categories) from a sql mobile database(Northwind), setting the resulset to Details (data source view) and dragging the datasource the form. Now I can easily accomplish navigation using the bindingsource but I don't now how to accomplish the following. If the user wants to add a record, I call the AddNew method of the bindingsource. Now when the user enters a Category ID that alrea ...Show All

  • ion lucian #ifdef for VS 2005 vs EVC 4.0

    What is an #ifdef I can use to determine a compile is VS2005 vs eVC 4.0 Thanks JEK The short answer is that you can't. There is no "emulator" flag because the device emulator is just another device from the IDE's perspective. Devices are only relevant to the deploy and debug operations, the compiler is completely unaware of them. If you wanted to, you could create your own "emulator&qu ...Show All

  • Potyos manufacturer identify

    Hi I developing application to scanning barcodes, but the application must work under different platforms and different scanner manufacturer. If i will able to identify manufacturer from .net code i can initialize right scanner. How can i identify manufacturer Thanks for your advice. Each device has a unique serial number, which is a GUID. The last 8 digits of that serial represent the manufacturer (i.e. those digits are the same on e ...Show All

  • Ralf Welt Take an incomming call on a smartphone

    Hi, I'm trying to make a program in VB using SmartPhone functions. For instance, I succed to dial a call with PhoneMakeCall function : http://msdn.microsoft.com/library/default.asp url=/library/en-us/APISP/html/sp_phone_phonemakecall.asp I'd like to know if it's possible to take an incomming call, I can't find anything about that on MSDN.. Does someone could say me if it's posible, and how do that. thanks ...Show All

  • gftdnhkask millisecond property?

    Does the millisecond property work on the CF I'm using vs2005 Beta 2 Now.millisecond always returns 0 (zero) but if you create a time, and give it the millisecond parameter, it returns the value you'd expect...     Dim dtNow As DateTime = Now     Dim myNow As New DateTime(1999, 1, 13, 3, 57, 32, 11)     myNow.Millisecond = 11     dtNow.Millisecond = 0 what gives Thanks for the hel ...Show All

  • scott xxxxxxxx negative fseek?

    hi everyone! i'm trying to fastforward and rewind an audio file and I was wondering if I could use fseek to do that... I think I can use fseek to fastforward the file but what about rewinding can I enter a negative number in fseek, e.g. fseek (fileptr, -5, SEEK_CUR) if not, what are other ways to rewind/fastforward through a file any tip would be appreciated. thanks! Pls refer to following link for more relave ...Show All

  • flyte capturing web form values in WebBrowser class .net compact 2.0

    I realize that .net 2.0 compact framework does not support the Document property in the WebBrowser class, which is the straightforward way to, say, detect whether a checkbox in a web from is checked.  I've tried what was suggested in http://msdn2.microsoft.com/en-us/library/ms229657 ; however, it doesn't work as advertised.  Even when I used the exact code snippets as shown, the Url property of the WebBrowserNavigatingEventArgs was nul ...Show All

737475767778798081828384858687888990

©2008 Software Development Network

powered by phorum