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

Software Development Network >> Smart Devicet

Smart Devicet

New Question

IMSI reading
How VS 2005 connect to smart device through wireless connection
App development in VS 2005 on custom CE6.0 OS design
how to send SMS on compact framework
Import/Export functionality
Serial Port DataReceived Event
UPnP (once more): linking problems
WCF support in compact framework
Capturing Red(End Key) and Green(Send Key ) press
InvalidProgramException after converting from VS 2003 to VS 2005

Top Answerers

bryanedds
Tasadar
ZychoFlow
ruben_itlp
hanagomi
Ido Ran
Casper Jensen
hypo
Robin Sarac
pwhitaker
sitemap
Only Title

Answer Questions

  • praveench2k How to prevent user from powering off the PDA

    Dear all, I'm working for a communication program. I found if I power off the PDA when my program is in 'talking' state (sending and receiving RTP packets using socket), the system will be frozen and dead when I power on. So I decide not to allowed user to power off during talking. I could use SystemIdleTimerReset() to disable auto power off, but I don't know how to prevent the 'manual' power off. I know there must be a way, because I see Tomtom could do it. Could anyone give me a hint Thanks in advance! Yun I've found some stuff on power.  Namely the POWER_ACTION_POLICY in which it looks like you can change your the way in which a power down will occur.  I guess alternatively, you could somehow change the po ...Show All

  • Yong Hwee After restting IE7, I can not install Live Toolbar

    I had to reset my IE 7 and now I can not install Windows Live Toolbar. I have uninstalled in the Control Panel. I did not uninstall the add-ons. The program seems to install but when I look at VIEW- Toolbars, Windows Live Toolbar is greyed out. Anyone have a suggestion on how to reslove this issue My next step was to do a REGEDIT and search for Windows Live Toolbar entries. Thanks ahead of time for any valid assistance. the solution is easy if we have read early the help from ie we will find the solution early. go to tools, manage add ons enable or disable add ons search for the toolbars you want to activate and select enable Yeah texan: I think they are trying to o ...Show All

  • user_whatever keybd_event not firing OnKeyPress callback method

    I have a form that overrides the OnKeyPress() / OnKeyUp() / OnKeyDown() methods. When I do a P/Invoke call to keybd_event() it does not make it into these methods. Here is my P/Invoke: public const int KEYEVENTF_KEYUP = 2; public const int VK_RETURN = 0x0D; public void pressEnterKey() { //press the enter key keybd_event(VK_RETURN, 0, 0, 0); //releasethe enter key keybd_event(VK_RETURN, 0, KEYEVENTF_KEYUP, 0); } Is this a threading issue Thanks, -Alan- I'm in Windows Mobile 5. I've tried many keys. None of them work. I'm invoking this in a unit test helper class that is running outside the GUI thread, so I believe that it's not firing the event correctly back ...Show All

  • ron nash can live be my domain e-mail??

    I use a yahoo e-mail account and it works great. I was just wundering if thier is a way to have my windows live ID as this example@live.com is this possible I want my e-mail to say "live" after the "@" symbol is this possible i have a few too.. but i mean i want my email to have the word "live" instead of "yahoo" or "hotmail" Ichi get ahold of me my live ID is Weavor@hotmail.com Weavor@weavor.com NO but you can use custom domains, or office live to get your own .com domain We are working to make the Live.com domain available for email address registration. Please keep an eye on the Live ID blog at http://winliveid.spaces.live.com/blog/ for a fut ...Show All

  • qjay TabControl

    Ok, so i want to use the tabcontrol. what i want is for when i click tabpage1 to set the webbrowser to a certain website. a few problems. when i put in the url it says www isn't declared. what do i do also, i tried changing to the event to something simple, like if i click on the tabpage the background is supposed to turn green. its not happening. this is the code i am using: Private Sub TabPage1_Click( ByVal sender As Object , ByVal e As System.EventArgs) Handles TabPage1.Click ...Show All

  • mri How to read Bluetooth serial port settings?

    Hi All. I want to read the Bluetooth Serial port setting , i.e. Inbound port Number & outbound port number of a PDA using C#. Please help me out. Yes i know that, but i am not finding exact key. I need it for PocektPC 2003 & WinCE 5.0 , I am read registry  & found HKEY_LOCAL_MACHINE\SOFTWARE\WIDCOMM\BTConfig\Services but still not sure about this key. can you help me most likely you would need to read the registry for the settings of the value. Try to find the registry key where the COM port for the bluetooth is stored. Checkout this post http://www.peterfoot.net/WindowsMobile50BluetoothVirtualSerialPorts.aspx Manav Just for everyones information there are numerous Bluetooth ...Show All

  • Scott Tachiki Managed version of lineDrop in Windows Mobile 5.0?

    I'm trying to write an application that drops calls from known telemarker numbers. The SystemState class in the Windows Mobile 5 SDK makes it easy to detect incoming calls and determine the number. However the matter of dropping the call is a whole other issue. AFAIK, there is no facility in the Compact Framework for this (correct ). I've looked at OpenNETCF and Alex Feinman's TAPI wrapper (which I don't believe works on Windows Mobile 5). Am I missing something or is there simply no way to do this Thanks, Matt Send an email to dcs@opennetcf.com When I use Alex's TAPI wrapper against the Windows Mobile 5 Smartphone Emulator I get the following when I dial out a number (forget about receivin ...Show All

  • mahima tabpage events

    Hello, I want to know if there's an equivalent event in CF for event Enter for tabpages. Basically i want to fire an event whenever the user chooses a tabpage. Thank you The SelectedIndex property will tell you which TabPage is currently selected. TabControl on .NETCF exposes the SelectedIndexChanged event. The selectedindexchanged only works when we are selecting tabs during runtime. my prob is that i want to know which tab i'm in when the program first started. any suggestion ...Show All

  • jasse_91 How to play an audio file (.wav) in WM 5.0 SP?

    Hello. In project Visual Studio 2005, Visual Basic, Windows Mobile 5.0 Smartphone, Device Application, I have added an audio file, for example, drumpad-crash.wav. On this forum, from Mr. Ilya Tumanov (posts 3313) there is the program, which in the given project I have written down in such kind: Public Enum PlaySoundFlags ... End Enum Public Declare Function PlaySound Lib "CoreDll.dll"( _ ByVal szSound As String, ByVal hMod As IntPtr, _ ByVal flags As PlaySoundFlags) As Integer In method Form1_Load, I have written down the next line: PlaySound("..\..\drumpad-crash.wav, IntPtr.Zero, _ PlaySoundFlags.SND_LOOP) At Start of the project, constantly (LOOP) sounds the signal, wich has been no ...Show All

  • Joseph22 CFile::SetLength() exception in Storage Card folder

    In the device emulator, CFile::SetLength() throws an exception when used on files in the Storage Card shared folder. Is this a bug or is that behavior to be expected Moving to Emulator forum - Barry might be able to help "This should be fixed with next release of WindowsCE/WindowsMobile and DeviceEmulator." Has this happened yet I'm also getting it on FlushFileBuffers(handle). Hmm this is the 2.0 beta. I guess I'll just ignore this exception if the previous write (of the same length) was successful. Thanks. Yes there is a know issue with Folder-sharing driver passing size equal/smaller than the current file size to SetEndOfFile/CFile::SetLength fails with ERRO ...Show All

  • silenced any update/info on broken Remote Spy?

    I'm having some serious problems with using the version of Remote Spy that shipped with VS2005. I can connect and I can list windows, but when I try and watch events, I'll get two or three events then nothing, no more events show up. The version number of Remote Spy that I'm seeing this problem with is 5.1.1651.0. I've seen some mentions of this particular problem online, though I haven't seen anything official and I haven't seen any patches or updates to address this. The current workaround is to use an older version of Remote Spy (version 5.0.1.1440) that comes with either eVC4 and/or Platform Builder (not sure which). This workaround is not ideal since this older version won't work if copied to a WM5 development machine with only ...Show All

  • kumarangopi OnLoadFeed(feed) call back function

    Hi everyone, I am using the public collections function of live.local.com to provide layers for my maps, for example function AddMyLayer(sourceLayer) { DeleteLayers(); var veLayerSpec = new VELayerSpecification(); veLayerSpec.Type = VELayerType.VECollection; veLayerSpec.ID = layerid; veLayerSpec.LayerSource = sourceLayer; veLayerSpec.Method = 'get'; veLayerSpec.FnCallback = onFeedLoad; map.AddLayer(veLayerSpec); layerid++; } When the callback function is executed a "feed" object is passed back, but I cannot find any information about using this object. function onFeedLoad(feed) { alert('RSS or Collection loaded. There are '+feed.length+' items in this list.'); } My intention is to create ...Show All

  • Marzullo What books to use?

    I am new in smart device application development. Can anyone out there suggest me some good references or books so that I can learn how to develop my own mobile application (desktop application that can use to send SMS to pocket PC emulator) PS : I am using Visual Studio 2005 C# Thanks in advance. Slightly out of context here. But here is a link which could be useful. http://msdn.microsoft.com/mobility/understanding/books/default.aspx Hope this helps. -Thanks, Mohit ...Show All

  • MattP65 how to start develop C#.NET application on Windows Mobile 5

    i have install VS.NET and WM 5.0 SDK on my pc but i don't know how to config it to develop and run my application on my emulator No, you do not need to change any project properties, defaults should work. It's only natural to get an error like that if emulator is closed. But what happens if you don't close the emulator Form what you saying it appears emulator starts and VS deploys NETCF on to it which is how it should be. Note: it might take a while for deployment to finish for the first time, could be 15-20 minutes on slow PC. It appears everything worked OK and you're in debugger mode. You should be able to break into your code, set break points, step through the code and so on. The only problem I see with your ...Show All

  • Dennis de Jong Stack Overflow Exception

    hi all, I am the error of stack overflow exception. I m redrawing the list items according to the changes in the scrollbar. if scroll again and again then it gives me the error of stackoverflow exception. Please help. wht can b the reason for this exception.plz help. thanx. Maybe you want to change value in scroll control's ValueChanged event handler. two ways: 1.stop occur ValueChanged event before change scroll value this.vscroll.ValueChanged -= new EventHandler(vscroll_ValueChanged); this.vscroll.Value = yourvalue; this.vscroll.ValueChanged += new EventHandler(vscroll_ValueChanged); 2.Change your idea for resolve this question You have a recursion of some kind. Look into s ...Show All

86878889909192939495969798990123

©2008 Software Development Network

powered by phorum