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

Software Development Network >> Smart Devicet

Smart Devicet

New Question

send and recive data via USB Port
Shift F5: need to dispose of resource from VS stop. Where?
TypeLoadException - need help with loader log
Java & Windows Live Mesenger Compatibiliy Issues with Windows Vista Ultimate 64 bit
MSN Activity and external content
Cradling emulator
CF to load&insert image datatype into SQL Server 2005?
OpenFileDialog Filter capabilities for specific file names.
Extending Context menu for Windows mobile 5.0 Samrtphone Contacts
.NET CF Sockets using ActiveSync

Top Answerers

howard dierking - MSFT
Gravy
bengin
sdeyoreo
Polar Bear
MaryJaneF
Joel Clipperton
TheSequoyan
fergar
Andrea Yap
Data Structures in
Only Title

Answer Questions

  • 4B7 information regarding mobile start status

    hi all, I want to track the boot up of the mobile, i.e. after i switched off the mobile as soon as i start again, i want my appln to run. any help in achieving this i would very greatful. Thanx in advance thanx, i m trying to do the same. well i m using C#. If i place the call in the Main() function then also it should run right In my case wht i have done is: created the console appln that will create the database and i want this to be run continously. if any changes done in the filesystem i trace it and that details go into the database. but i m able to do this..... any help. hye_heena wrote: thanx for the help.But where to include this code Invoking to t ...Show All

  • Keith Chapman focus ring for a control?

    Hi, Is it possible to highlight a control with some sort of focus ring, when it receives focus, just like the dashed border for the text( on the control) displayed in normal windows forms. Plz help! Thanks, Hari. For standard controls on WM5.0 this is done for you. On PocketPC 2003, you must call DrawFocusRect via p/invoke. For custom controls, on PocketPC 2003, please use DrawFocusRect via p/invoke if a focus rectangle is needed. For WM5.0 draw a rectangle with color SystemColors.Highlight as the focus rectangle. David Wrighton .NET Compact Framework ...Show All

  • jeffmorris Taskbar (MainMenu) Background Color

    Hi I want to change the background/foreground color of the taskbar (MainMenu) that is displayed at the bottom of the form. Does anybody know how to do this Thanks in advance. Grant. It's not possible with a standard control. Unless you create a custom control. ...Show All

  • Jubber Small help..

    Hello here is the attached code i used to send SMS and i got this from MSDN as a sample. But it sends class0 sms, can you please edit the code to send class1 or normal sms. I think the provider specific class has to be changed but i couldnt do it properly. So please help me, thanx a million inadvance. File: SMS.vb ---------------> The class used to send sms Imports System.Runtime.InteropServices Imports interopserv = System.Runtime.InteropServices Public Enum SMS_ADDRESS_TYPE SMSAT_UNKNOWN = 0 SMSAT_INTERNATIONAL SMSAT_NATIONAL SMSAT_NETWORKSPECIFIC SMSAT_SUBSCRIBER SMSAT_ALPHANUMERIC SMSAT_ABBREVIATED End Enum 'SMS_ADDRESS_TYPE Public Structure PhoneAddress '/ <summary>The address type.</summary> Publ ...Show All

  • polymorphicx Convert this please. Windows Form app to SmartDevice app

    I have snipet code from Windows app, but also I want to build SmartDevice app. could you convert my code please 3 codes : 1. code for browse network folder only Dim NetDrives As New List( Of String ) Dim drives() As System.IO.DriveInfo drives = System.IO.DriveInfo.GetDrives For Each dr As System.IO.DriveInfo In drives If dr.DriveType = IO.DriveType.Network Then NetDrives.Add(dr.Name) End If Next Dim dir As String = System.IO.Directory.GetParent(System.Environment.GetFolderPath(Environment.SpecialFolder.Personal)).FullName dir &= "\NetHood" Me .OpenFileDialog1.InitialDirectory = dir Me .OpenFileDialog1.FileName = String .Empty While Me .Open ...Show All

  • jamesIEDOTNET Is there a way to import MSN messenger/Yahoo messenger/AOL messenger into a universal address book.

    Is there a way to import MSN messenger/Yahoo messenger/AOL messenger into a universal address book. I was asked by my management to find out how some of the other sites have implemented this functionality. SANU wrote: Is there a way to import MSN messenger/Yahoo messenger/AOL messenger into a universal address book. I was asked by my management to find out how some of the other sites have implemented this functionality. It seen GAIM can work like your saying. Hi, We have a website developed in asp.net 2.0, c#, sql server 2005. I need to provide users with a way to import their address books from gmail, yahoo, hotmail, and aol at the least. I searched the net, and found soooo many solutions, most providing code ...Show All

  • srinivasintouch Directshow filter : splitter

    Hi, When I want to run a mp3 file, could you tell me what is doing the mpeg 1 splitter As The mpeg1 splitter splits an MPEG-1 system stream into its component audio and video streams and I have only audio. Thanks a lot Sorry, this forum is intended for questions related to Device Emulator only. You may want to post it to relevant forum. -Thanks, Mohit ...Show All

  • Manivannan.P.K fill textbox with multi rows from database sqlce

    needly help i want to fill multi row to textbox from database but when i'm trying the text fill with single row buti want it multi rows can any proffessional help me !!!!!!!!!!!!!!!!!!!!!!! Is your TextBox setted as multiline textbox You can combine several rows in one string and set Text property of the text box to it. Note you can’t do that using data binding. ...Show All

  • Lino17580 Disappearing Inputpanel

    Hello, My problem is: After Messagebox.Show() System.WindowsCe.Forms.InputPanel has gone, it can be back only on new instance of Form, I use .NET Compact Framework 2.0 and ToolBar with image buttons near inputpanel. It happens on HP Ipaq hx2400 with Windows Mobile 5.0, it doesn't happen on Asus MyPal N636, Fujitsu Siemens N560, Dell Axim, HP 3715. I havn't tested more. Please help me if anyone met this problem Michal Is this really Compact Framework 2.0 Service Pack 1 you are running on the device I had the same problem. There is a really simple but stupid fix for this. After each MessageBox.Show() you can reset the form's menu For example: this.Menu = mainMenu1; I tried developing with CF 2 SP 1 but found this stupid ...Show All

  • dbaf addressing dependency with partial deployment of CF1?

    I discovered that a dll used in our solution has a dependency on mscorlib and System.dll version 1.0.500, while the rest of the solution is upgraded to Compact Framework v2. Is there some way to create a CAB that includes just those two CF1 files for deployment, instead of requiring all of CF1 along with all of CF 2 Or can I assume that the CF 2 version of these dependencies will be compatible Thanks. Yes, NETCF V2 would automatically redirect 1.0 assemblies on to 2.0 versions, so your solution should work. That is only true for NETCF V1 assemblies, desktop assemblies won't be redirected and would cause TypeLoadException. ...Show All

  • IS dude RTC on windows mobile 5

    is it possible to imoport rtc on windows mobile 5 will pInvoke be able to access its dll Ah, RTC as in Real time communcations, not as real-time clock. On most of the Windows Mobile devices the RTC implementation is not included. If you find a throd-party one, you will need to use PInvoke to talk to that library The answer depends on your needs. For the most fine-grain time measurement use QueryPerformanceCounters (P/Invoke). Environment.TickCount is easier but less precise Alex Feinman wrote: Ah, RTC as in Real time communcations, not as real-time clock. On most of the Windows Mobile devices the RTC implementation is not included. If you find a throd-party one, you will need to use PInvoke to talk to t ...Show All

  • Ryan C. Price Windows Media Player supports streaming?

    I'm using Windows Encoder tool to broadcast a captured video of my desktop. I stream that to some port, and I can access it over the internet by opening Windows Media Player (desktop version) and doing File -> Open URL -> http://myStreamAddress With Windows Media Player mobile, if I do the same, it says "invalid parameter". Any ideas Judah wrote: I'm using Windows Encoder tool to broadcast a captured video of my desktop. I stream that to some port, and I can access it over the internet by opening Windows Media Player (desktop version) and doing File -> Open URL -> http://myStreamAddress With Windows Media Player mobile, if I do the same, it says "invalid parameter". ...Show All

  • PAzevedo method to populate combobox in compact framework

    I would like to know the best way to populate a combobox in .net CF. I tried to use datareader/arraylist in a form of nearly 20 combobox. But that took more time when compared to the usage of data tables. But I read an article that says that datareader usage improves performance compared to dataset/view. Can anyone suggest me the right method to use Thanks Sangeetha S I don't know what the *right* way to do it, but I am using datatables and it's working ok for me. ...Show All

  • lushdog Real basic question: How do I make .exe file from source codes?

    Hello, I'd like to ask a very basic question, I received source codes from my manager, he told me to make .exe file from these source codes, my ex-coworker used to make .exe file from this source code to run this .exe on the most current Pocket PC. This pocket pc is built with Windows Mobile 5.0. I'm not a programmer, so I have no idea how to make .exe from this source code, <question1> do I install embedded visaul C++ and Pocket PC SDK first I'm not even sure which programming language I have to install. <question2>how do I make .exe file using the given source codes step by step I received the following 5 files from my manager. DiskSpaceCheck.c, makefile, sources, sources.cmn, vssver ------------------ ...Show All

  • yeos_lee ppc stops on main()

    i am using vc++, with a smart device, to program a ppc. My problem is the windows engine runs just fine, but it runs all the time, without timeshare to my main() vc++ program. Winmain() and Main() are my only threads, both are suppose to start running at time "0". Main () does not startup and i can not thaw it. This has been a problem for 4 months. I can not program around main(). I would appreciate any help and input. Thanks, It worked. I did not check "19" input. Thanks again, again, and again ................ that information is very useful. thanks a ton full.   This is what i came up with. I'm pretty sure it works, and i'm facing a config problem somewhere. // 1111.cpp : Define ...Show All

444546474849505152535455565758596061

©2008 Software Development Network

powered by phorum