Hi
how I can check if in my Windows mobile program there is WIFI connection ?
(I dont want to use try & catch for any action)
I work with Windows mobile 2005, FW 3.5, WS2008
thank's in advance
...
Hi Everyone,
I've wanted to get into Python development for awhile and most of my programming experience has been in .NET and no mobile development. I recently thought of a useful app to make for my windows mobile phone and thought this could be a great first Python project.
I did a little research online and found PyCe which I thin...
Hi!
I'm wrapping up a Windows Mobile (6.1) app I've written and everything goes fine and dandy, but I've got one nasty problem: My app needs a few registry keys for settings and I can create them in the installer (using the registry editor) fine, but my problem is that every time I run the installer to update a new version of the softwa...
In a native(c++) windows mobile app. There are ways to be notified of low memory, WM_HIBERNATE, and low power, RequestPowerNotifications().
Is there any way to be notified when storage space is running low? Or must an app just poll regularly with GetDiskFreeSpaceEx()?
...
To get your windows mobile certified one of the requirements is that you implement these functions to get certified. I personally would love to use these functions to clean up the application data folder.
I have been searching the Internet and i was only able to find a sample that was based on c++ / vb( link ) and is from 2004. Is there...
Hi
How to use Datagrid in Right-to-left (Like Hebrew or Arabic language) ?
(WS2008,WinMobile2005,FW3.5)
thank's in advance
...
Hi
I wanted to know how I can display a modal dialog in one of my forms in a windows mobile application. I am getting the user inputs in a form and in case a validation fails, I want to display a dialog to the user telling them so (with just an OK button).
So far, the only thing related to dialogs I found in the framework was the Dialo...
In normal C# desktop apss, you can launch a URL by saying:
System.Diagnostics.Process.Start("http://www.stackoverflow.com")
but System.Diagnostics.Process on windows mobile doesn't seems have that string overload.
...
Hello,
is there a way, to make a picture transparent in CF2.0? I have to lay a small Image over a textbox, but it has to be transparent so the User can see the text anyway. Do you have an Idea?
Thank you very much
twickl
Edit:
Thanks for your answers, I will check those links out!
To complete my Post, here is what I´m trying to do:...
I have a simple Windows Mobile application which records GPS coordinates
every 5 minutes. The problem is the app works fine as long as the screen
is on, as soon as the phone goes in standby mode the app stops working.
When I switch on the device the app again starts working again.
What do I do to keep the app working even in standby mo...
I have been optimising memory performance on a Windows Mobile application and have encountered some differences in behaviour between VirtualAlloc on Win32 and Windows CE.
Consider the following test:
// Allocate 64k of memory
BYTE * a = (BYTE *)VirtualAlloc(0, 65536, MEM_RESERVE|MEM_COMMIT, PAGE_READWRITE);
// Allocate a second contig...
I wrote three programs that modifies the registry in Windows Mobile to install and remove a todayscreen plugin for debugging purposes. They worked great for a while, but one by one they have suddenly been giving "UnauthorizedAccessException"s.
See the code for two of the programs below (note that the following code just sits directly in...
Is there a fast way to rotate images in .NET Compact Framework.
I've found ways to do 90, 180,270, rotations but would like to be able to rotate images free form in similar speed.
...
I'm new to WinMo, and want to write a GUI application for a Windows Mobile Touch device.
I'm familiar with C#/C++, although not with any GUI development, and am writing a GUI for an application with a large C++ codebase which I've already ported to the platform successfully.
What would you reccomend for someone who is familiar with Ob...
Whats the best way to go about modifying a C++ program to be used with pInvoke from C#.NET CF?
I have a large C++ codebase which makes extensive use of STL. Namely iterators, container classes, and standard strings.
On top of this many lightweight classes are passed around by value.
I want to build a C# gui ontop of this codebase for ...
I added a wav file to my Windows Mobile app and I want to use MobilePlaySound in CoreDll.dll to play it.
The fileName is one of its parameters:
MobilePlaySound(fileName, IntPtr.Zero, (int)(Flags.SND_ASYNC | Flags.SND_FILENAME));
I create a new folder 'sound', add 'start.wav' to the project and set its property 'Build Action' to 'Emb...
I need to remove a subtree in the Windows registry under Windows Mobile 6. The RegDeleteTree function is not available, and SHDeleteKey is (apparently) not available in any static library under the WM6 SDK, though the declaration is available in shlwapi.h.
I tried to get it from shlwapi.dll, like
typedef DWORD (__stdcall *SHDeleteKe...
I've got a handle to a BITMAP structure (HBITMAP) in a Windows Mobile application -- I'd like to save the bitmap as a PNG file, using the IImage interface if possible. (There's no BMP file in this situation, the BITMAP is only in memory).
It looks like I could use IImagingFactory's IImagingFactory::CreateImageEncoderToFile method to sav...
I want to get the path of my app like: "\\ProgramFiles\\myApp", I try to use the following code:
string path = System.Reflection.Assembly.GetExecutingAssembly().GetName().CodeBase;
But it returns a path which has "\\myapp.exe" at the end.
I also tried:
string path = System.IO.Directory.GetCurrentDirectory();
But it throws an “No...
Hi All,
I am new to mobile application development.
How to Debug .net applications in windows mobile.
Please help me in this. Thanks in advance.
...