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

Software Development Network >> Smart Devicet

Smart Devicet

New Question

Application verifier tool
msn messenger blocks...
Full screen application and notification bubble
MsnMsgs.msi Installation by Group Policy
XML Character Encodings
Does phone.dll and coredll.dll varies from device to device
adoce
What is the minimum and maximum size of an application to be deployed on Windows Mobile 5.0 devices?
Battery indicator on ToolBar? How to?
Windows Live Messenger Problems Forcing Closure after using MicrosoftR LifeCam VX-3000

Top Answerers

José Antonio Farias - MVP
Colin Reid
RGLloyd
chriskof2000
Binary
RostaB
raq
llebron
Matt24
mr4100
sitemap
Only Title

Answer Questions

  • usmayo3rd Imagebuttons

    Hi I am searching for some Imagebuttons designed for Compact Framework 2.0. But I cant find any company which have developed such buttons. Any suggestions I also have tried to build my own Imagebuttons based on several articles in different forums. The problem with theese buttons is that I cant get the desired text to show upon the image. Everything else is working just fine. Anyone who knows something about this Hi, there are some really nice 3rd party controls at http://www.pocketpccontrols.com/ I have no connections to the s/ware, but have bought the button controls, and was very happy with the look of the resulting application HTH Pete Hi The OpenNETCF.org Smart Device ...Show All

  • cbtm This space is temporarily unavailable. Please try again later.

    I would like to change my permission to public, but it is unavailable for 3 days~~ =.=,I can setting everythings,spaces,blog etc except the 'permissions' sent email to Microsoft support team but no reply Dealing with the same *** for months, except I can't edit my profile or add any pictures or edit picture descriptions anymore. It's awful. sent plenty of error reports to microsoft like you, never replied. Something needs to be done or I'm done with Microsoft forever. Hello , Well I too face the same problem while i was trying to check out my statastic page for last 4/5 days...it wasn't openning....do u guys have any solve anyways waiting for reply :) Regard ...Show All

  • MrBones Deployment and/or registration failed with error: 0x80070070. There is not enough space on the disk.

    I tried building the camera API and got this error. I went and saw the space using Space Maker Storage (Flash) Storage Total: 27.98 MB Used: 4.60 MB Free: 23.39 MB it displays this. Please help me ------ Build started: Project: CECamera, Configuration: Release Any CPU ------ CECamera -> C:\Program Files\Windows CE Tools\wce500\Windows Mobile 5.0 Smartphone SDK\Samples\Cs\Cecamera\bin\Release\CECamera.exe ------ Deploy started: Project: CECamera, Configuration: Release Any CPU ------ Deploying 'C:\Program Files\Windows CE Tools\wce500\Windows Mobile 5.0 Smartphone SDK\Designtimereferences\Microsoft.WindowsMobile.dll' Deploying 'C:\Program Files\Windows CE Tools\wce500\Windows Mobile 5.0 Smartphone SDK\Designtimereferences\Microsoft ...Show All

  • PramodJ How to use .NET Library into Compact Framework (SmartDevice App)

    Hi All, I have a serious problem. I'm developing a project which contains 1 program destinates to Windows XP (.NET Platform), and other detinates to Windows CE.NET (CF Platform). So, They both use or share classes and I have designed about MVC (Model-View-Controller) pattern. So, my initial idea was to have one Model, one Controller and 2 views (XPView and TerminalView) and they both views uses the Controller anbd Model classes. However, I have designed Model as a Library Project and Controller the same, XPView as a simple Windows Project, and TerminalView as a SmartDevice Windows Project. My surprisse is when I perform my SmartDevice Project, it l ...Show All

  • donbox5 HttpWebRequest.ReadWriteTimeout Asyncronous timeout problem

    Hi all, With regards to using HttpWebRequest.ReadWriteTimeout with asyncronous requests, I understand it is the responsiblity of the client application to implement its own time out mechanism (MSDN) but the example MSDN uses to achieve this uses: ThreadPool.RegisterWaitForSingleObject(result.AsyncWaitHandle, New WaitOrTimerCallback( AddressOf TimeoutCallback), myHttpWebRequest, myResponse.DefaultTimeout, True ) Throws an error (VS2005) stating that : - Error 'RegisterWaitForSingleObject' is not a member of 'System.Threading.ThreadPool'. MSDN says this is supported in Compact Framework 1 and 2. I have tried both but still get the above error message :( I have the following namespaces imported: Imports System Impor ...Show All

  • Tdah how to turn off the ppc

    how to turn off the ppc with c# .net cf 2.0 Thank you . Hi Here is a sample how to call this Win32 API: using System.Runtime.InteropServices; namespace SuspendTest { public partial class Form1 : Form { public Form1 () { InitializeComponent (); } private const int POWER_STATE_SUSPEND = 0x00200000; private const int POWER_FORCE = 0x00001000; [ DllImport ( "coredll.dll" )] internal static extern int SetSystemPowerState ( string psState, int StateFlags, int Options); private void button1_Click ( object sender, EventArgs e) { SetSystemPowerState ( null , POWER_STATE_SUSPEND, POWER_FORCE); ...Show All

  • Toby Broom Multiline Textbox on WM5 workaround?

    I know that multi-line textboxes have problems on WM5 w/ .NETCF 1.0. Unfortunately WM5 Smarphones all ship with 1.0 and i can find a simple way to build a cab that would do the upgrade to 2.0 (if i'm wrong on this, please point me to a resource) and without a single click install, 2.0 just isn't an option. So i've created elaborate hacks to work around the paint issue, but every hack creates a new problem. Problem 1: When the multiline textbox draws it doesn't paint its entire background Hack 1: custom control which hides the textbox, paints its background then using a timer shows the textbox (now i can control that background paint and the textbox looks fine. Problem 2: Now the background paints, but T9 pop-ups on different phones will ...Show All

  • Bo Tanaka Streaming Multimedia

    Does anyone know how to stream audio and video using RTP or and RTP like implementation to and from a smart phone Hi! I'll try to so same thinks !! Have you got an answer Thanks a lot ! OR The Smart Devices Native C++ development forum is likely a better place for RTP related questions as there is no good managed story for working with RTP on devices: http://forums.microsoft.com/MSDN/ShowForum.aspx ForumID=35&SiteID=1 Here's a thread from that forum that may get you started: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=706226&SiteID=1 check out my website , I created a wrapper for an open source RTP for smart devices. h ...Show All

  • jamesIEDOTNET Problem RElated to continous Response Stream.

    Hi All, I got a endless Response stream (which is XML data) in turn to my Http request that I send to my server. When ever I try to do StreamReader reader = new StreamReader (response.GetResponseStream()); while(!reader. EndOfStream ) { do something } My compiler keeps gathering the response until some predefined timeout occurs. which is approximate 4-5 minutes. Then only after this I am able to read my response. Same things happens again when it automatically starts appending the repsonse again. Can somebody tell me a way how to do it right How to reduce that predefined time to some seconds so that i can deal whatever response I got instantaneously. It would be a great help of your's, If anyone c ...Show All

  • SisMng Wheel input on Smartphones

    Is there a way to distinguish the up and down events of a wheel in the smartphone, as opposed to the up and down arrow key. Right now they both fire the Keys.Up and Keys.Down events but I want to do different actions based on whether this comes from the wheel or the keys. Any ideas Thanks The .NETCF team is unaware of how to do this. There is no explicit support for this in the managed API. As far as I can discover, this would require using a phone vendor specific api, or it may be the case that this can be done by using the HardwareButton class. David Wrighton .NET Compact Framework ...Show All

  • Martinp23 Installed NETCFv2 CAB before SQLCE CAB files on Device.

    Hi all, is it a requirement that we install NETCFv2 CAB files before SQLCE CABs, as I have a client that has just experienced problems when I installed the SQLCE CABs before the NETCFv2 CAB. It seems that it didn't register the following file... GAC_System.Data.SqlServerCe_v3_0_3600_0_cneutral_1.dll in the Windows directory when doing the SQLCE CABs first... I have created an installer following the Multi-cab Setup sample in the WM6 SDK examples, that allows me to install multiple cabs at once. I do it so I can install .NETCFv2, SqlServerCE, and my application all at once without the end user having to manually do the installs. Additionally, we do the installs over-the-air, and not through ActiveSync. Getting it to work consists of ...Show All

  • Phantisy Eliminate flicker in picture box

    Hi, I have a C# project where I try to draw lines over an image. The problem is that I get flicker because of the Refresh. Now I've already seen that overriding OnPaint Background works for the entire Form, but what if I'm only drawing in a picture box Is there any way to override pictureBox_paint and prevent the flicker Thanks You would be better off by inheriting from the Control to have a full control over the painting procedures. What I really wanted was to implement double buffering but i don't know how to do it. I've tried to override OnPaintBackGround which actually works on eliminating the flicker but then my application starts with the loading screen pic ...Show All

  • kymaita DateTimePicker

    I have a DateTimePicker on a form I set the date to today with the following code, but when the tableadapter.update is called a null value is sent to the date field bound to the DTP. If you tap it and set the date just fine. DateTime InvDate = DateTime .Today; invDateDateTimePicker.Value = InvDate; Can you elaborate on this Ilya Assign value to the data source instead. ...Show All

  • Clemson Switch from Live ID to .NET Passport

    Is it possible to switch it from Live ID back to .NET passport I was in the Windows Live Account Service page, I try to change my email to another one, but I only given one choice, which is to create a new Hotmail account. I remember last time, when I login to .NET Passport credential page, it do let me change the email to whatever email I want (not limited to Hotmail). Is this possible Peter Chan They are killing themselves with this in classic Microsoft style. Forcing their existing client base to adopt hotmail.com or live.com email addresses will only send us away to google and yahoo. At the very least they should have an account migration tool to bring your contacts and settings over from an ex ...Show All

  • aguess How to hidethe busy cursor for the life of the application

    At certain points the busy cursor appears on my fullscreen app, and it is very annoying. Is there a way to permanantly disable it I don't want to have to use Cursor.Current = Cursors.Default all through the code and I've found that Cursor.Hide() does not work. I dont think there's anything you can do. Since it doesn't have any events I think the only thing you can do is set a timer to go off frequently to change it back to default. Of course that would just introduce more overhead. ...Show All

92939495969798990123456789

©2008 Software Development Network

powered by phorum