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

Software Development Network >> Smart Device

Smart Device

New Question

httpwebrequest "could not establish secure channel for SSL" through NTLM proxy
Hiding Menubar
Trap All Key Presses Independent of Focus
ws2.dll and msxml.dll
Smartphone Menu.Clear Not Supported
writing a same string on more than one column in a listview?
Using Images on Button Controls
No Error Icon in DataGrid for rows with RowError?
RSA Encryption
migrating to CE5

Top Answerers

Chris7432
not a programmer
Anubhava
zjs
Charlie Genge
Renate
aeshaw
Technical Support
Jupiter13
BryanCTG
PHP Pretty Printer
Only Title

Answer Questions

  • wwfDev Webservice problem

    Hi I have some issues calling webservices. I have a server running on a wireless network that hosts the webservice im trying to access. This webservice has 3 simple methods that return string arrays and a dataset. My problem is that everyonce in a while the webservice stops responding and the pocket application justs gets stuck, sometimes it will achieve 10 calls sucessfully on a row, and sometimes in the first call it fails. Any ideas why is ...Show All

  • SeongWook Problem with Binding Source witn ResultSet as datasource

    I have a binding Source witn a ResultSet as datasource,I use resultset instead of a dataset becasue the DB that i’m working witn has 30000 and witn a dataset the aplication is to slow and uses a lot of memory. But I have a problem: When I try to cast bindingsource current Item to datarowview,i have this exception "InvalidCastException",this exception also occurs when I’m try to addnew Item to my bindingsource. Dim DRV As ...Show All

  • Justin Starnes Visual Studio 2005 - Deployment Bugs?

    The other day, when I thought I was deploying to the emulator (emulator was chosen from the target device combo box in the toolbar), it was actually trying to deploy to my device, which caused me hours of confusion because it wasn't plugged in. Right now, I'm having the opposite problem. "Pocket PC 2003 Device" is selected as the target device, yet even if I close the emulator, when I start the debugger, it just opens the emulator and ...Show All

  • JBrophy Getting "Registration failed wirh error 0x8973190e. Error writing file" ... Error 0x80450001

    I am trying to register a simple sample grabber filter that I wrote for WinCE 5. It compiles and links fine and I can copy it to the remote device or emulator. But when I try to deploy the DLL I get the error in the title. Any ideas Thx, Tom Sure, I will file a bug. But I have to believe that functionality this basic has to work, somehow. I based this code on a simple example posted by Gary Daniels. Thanks fo ...Show All

  • Mariachi how to let the system check external storage?

    Private Function IsStorageCardExist() As Boolean    Dim  storageCardPathConst1  As String  = "\SD card"    Dim  storageCardPathConst2  As String  = "\Storage card"    Dim  storageCardPath  As String     If (Directory.Exists(storageCardPathConst1)) Then       storageCardPath = storageCardPathConst1 + " ...Show All

  • lobot Deploy MSD with C# aoo on Tablet PC

    Hello, Where I can find some info on how I can pack an MSDE db with a C# app to deploy them together on client machine, in this case a tablet, or any machine. This should also apply when there is a db schema change Thanks Please ask in relevant SQL form. Thanks. ...Show All

  • California Mobile 5.0 Emulator Images

    Can I download the Moble 5.0 emulator images without the whole Windows Mobile 5.0 SDK I want to use them with the standalone Microsoft Device Emulator Version 1.0 preview. The only images I can find are for the localized versions which are no good for me.  I would download the SDK and get them from there but I can't run the SDK MSI because it requires Visual Studio 2005 beta. I would download and install the Visual Studio 200 ...Show All

  • Merten1982 Dll registered in v1 and v2 GAC blocks proper references in v2 project in VS2005

    Hi all, I have a control library dll for NT and the same dll compiled for CE.  They have the exact same name and version.  They differ only in their public key token, which allows me to have a control from both in my IDE. I installed the NT dll in my v2 GAC as well as my v1 GAC.  The problem is that when I add a control from the CE dll, VS2005 adds a reference to the NT dll to my project. I want VS2005 to add a reference to the CE ...Show All

  • Andrei Gavra How to make a phone call on Device Emulator

    I download the sample "CallEvents" and it work fine with PPC 2003 Emulator. "SendCallEvents" automaticly open the PPC 2003 Emulator and connected. How can I do to use this sample on WM 5.0 Emulator How to make a phone call on Device Emulator without wavecom I want to use virtual radio WM 5.0 Emulator You can hook up WaveCom radio to the serial port of your desktop, then go to Tools\Options\Devices\P ...Show All

  • Orschiedt how to create a WM5 Pocket PC app and how to run in emulator?

    I installed vs 2005 v 8.0.50727.26 (RTM.050727-2600) - I think it said it was an RC. Then installed Window Mobile 5.0 Pocket PC SDK. I have these problems/observations: 1. My pocket pc project c# that I had previously developed in vs.net 2003 which I converted to vs2005 does not offer to debug in a Windows Mobile 5.0 emulator.. The emulator manager shows a folder Windows CE 5.0 but has no images under it. 2. I tried creating a new project, I ...Show All

  • Carolyn Chau MSFT Developing VGA Aware Applications

    I have an application that I wrote, originally for my QVGA pocket pc.  I have now moved to a VGA device, HP's hx4700, and my app still works great...with the exception of my treeview icons looking grainy.  Is there an easy way for me to maintain QVGA compatibility and have my icons nice and crisp on VGA screens I think one solution is to make an ImageList with higher resolution versions of the ...Show All

  • Jerick06 Vibration for P800 platform coding

    Hi i'm new to mobile visual basic currently doing a vibration for P800 platform[Sony Ericsson p910i] which is connected to another bluetooth module. i want it to vibrate when i tap on the screen or button but can't seems to work with the codings i had, heard that i could get some help here.. Here are my codings.   Option Explicit Dim vibrator As VibrationClass Dim fuserModule As AFFuserModule Dim fuserFunction As AFFuser ...Show All

  • Thomas Hecht How to find out which FF events that are supported in CF?

    Hi, On my desktop computer I have a Full Framework application where I only want to show the events, for components, that are supported in Compact Framework. I've tried loading the corresponding CF assembly into a new AppDomain, trying to find the type there, in order to see which events that are available. But this doesn't work, since trying to load the CF version of the System.Windows.Forms assembly still actually loads the FF assembly from th ...Show All

  • samelena [C# & C++] P/invoke

    I'm totally lost, this C++ code should work in a C# assembly but i get a "Missing Methode" exception :( #include "MyDll.h" MYDLL_API int fnMyDll() {     return 99; }   and the header file #ifdef MYDLL_EXPORTS # define MYDLL_API __declspec(dllexport) # else # define MYDLL_API __declspec(dllimport) # endif extern "C" {    MYDLL_API int fnMyDll(); }   then i wrapp all this stuff [DllImport("MyD ...Show All

  • Trond Reierth How to make sure I am working with NETCF SP3?

    Hello, I'm rather new to Visual Studio and especially SmartDevice developing. I have a decent knowledge in Borland Delphi, and i'm trying to apply my skills in .NET developing using Visual Studio 2003. Here is the brief explanation of a problem I've run into: In my application I'm using a listbox, which stores some collection items. Anyway, I want to trap the keys, pressed while listbox is focused. In the event list there is no such an event ...Show All

666768697071727374757677787980818283

©2008 Software Development Network

powered by phorum