windows-mobile

RDP to Windows Mobile device from PC

╄→гoц情女王★ 提交于 2019-12-11 09:17:30
问题 I am in need of writing a program(s) that will allow me to remote in to a windows mobile device (WM6.1.4) and allow me to control (like the Remote Desktop Client on Windows XP/7). I can remote to a Windows XP/7 pc from my mobile device but not vice versa and that's what I need. I would also like to include a windows explorer feature to view/copy/delete files from a windows mobile device remotely. Any ideas or leads as to what I would need to do to get this done? C# preferrably. Thanks! 回答1:

P/Invoking SetWindowLong and CallWindowProc in managed code (compact framework)

♀尐吖头ヾ 提交于 2019-12-11 08:53:42
问题 I am trying to override the window procedure for the winmobile taskbar (in order to catch and block pressed buttons) by using SetWindowLong. I have created a class with one method for overriding and one for restoring the window procedure. The MessageReceived method is the one I use to replace the taskbar window procedure with. My class looks the following way: class ButtonBlocker { public delegate IntPtr WindowProc(IntPtr hwnd, uint uMsg, IntPtr wParam, IntPtr lParam); public static

Is it safe to open the same .sdf database file from two WinMo different applications?

眉间皱痕 提交于 2019-12-11 08:47:57
问题 I have two Windows Mobile 6.1 applications that use the same MS SQL Server Mobile database. They might select and update data in the database at the same time. The database is kept in one .sdf file. I don't know how the MS SQL mobile version works. The application loads following sql libraries: sqlceoledb30.dll, SQLCEER30EN.DLL, sqlcese30.dll and sqlceqp30.dll. It is safe to do this? I suspect that above dlls allow one application to work with the database stored in .sdf but there is no

How to detect/control the SoftInputPanel?

心已入冬 提交于 2019-12-11 08:31:00
问题 The SoftInputPanel , Soft Input Panel , or SIP is the on screen keyboard that displays on Windows Mobile devices. How do I detect when someone clicks the SIP ? How do I programmatically enable/disable the SIP ? 回答1: Never mind. Found a good article >> HERE <<. Basically include using Microsoft.WindowsCE.Forms; and a P/Invoke : using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms;

Access parent's DOM from script in an iframe in IE Mobile

若如初见. 提交于 2019-12-11 07:57:57
问题 I have a framed window (currently iframe but may possibly be frame) - I do not have control over this. I would like to detect if my content is inside an iframe (or frame). I wanted to compare the location of the current document with the one the top object holds but it appears it is the same object (top === window). After extensive googling I got to this IEMobile blog entry and in one of the comments there is this answer: iemoblog said: No, you can't access any part of the parent's DOM from

Is there a way to update a Windows Mobile 5 app over the air?

感情迁移 提交于 2019-12-11 07:47:53
问题 I want to be able to push out application updates to windows mobile 5 devices over the air, is this possible? Note, this is just an application, not a rom update. It doesn't have to be a strict push. It is just as well to have the user go to a web page and download a .cab file. Has anyone had success doing this? 回答1: If by "over the air" you mean wi-fi, then yes, I've done this. At first I gave my users a step by step (close the app, open Internet Explorer, visit this page, click this link

Get List of Installed Applications Windows Mobile (C# Managed)

不打扰是莪最后的温柔 提交于 2019-12-11 07:07:16
问题 I need to get List of Installed Application on Windows Mobile using C#. After that, I want to have capability to get notifications when installed application starts, ends etc. 回答1: When an app is installed by wceload, which is the typical install route, then an entry gets added in the registry here: [HKEY_LOCAL_MACHINE\Software\Apps] So you can enumerate keys and values here to determine what is installed and where in the file system it resides. Getting a notification when an app starts is

How do you move software input panel (keyboard) to bottom of windows mobile screen?

半世苍凉 提交于 2019-12-11 07:03:33
问题 I'm trying to move the keyboard to the bottom of the screen to hide the 35px menu bar that it shows by default on windows mobile 5/6. All of the examples I've seen about modifying the menu bar deal with hiding the button "MS_SIPBUTTON". The two parts of my question are: How can I move the keyboard down 35 pixels on the screen? And, where is "MS_SIPBUTTON" defined? 回答1: Part one: The best way I could muster to move the keyboard was a collection of Windows API calls all referenced from pinvoke

STL containers support for Windows Mobile

混江龙づ霸主 提交于 2019-12-11 06:45:24
问题 After days of debugging my Windows Mobile application I have came to a conclusion that the error I get is simply caused by std::list code which I have added. Just after adding this small piece of code : std::list<int> x; x.push_back(234); My application crushes. Therefore my question arises : Which of the STL's containers can be used in Windows Mobile and which cannot ? I have found this question but i do not find it useful for my problem. 回答1: If your program compiles and links fine, there

Windows Mobile is hell for new developers? (If I'm not wrong)

寵の児 提交于 2019-12-11 06:29:57
问题 This question was migrated from Super User because it can be answered on Stack Overflow. Migrated 10 years ago . I am new here and new to windows mobile development. But I have seen and experienced, for new developers having no trainers or experienced people around windows mobile development is like a hell shaking one. In complex topics you are going to find help from nowhere except you are lucky. So my question is how should I gain expertise in windows mobile without having any trainer. The