0
votes
2answers
21 views
Calling Native APIs from Managed Code
Hi all,
I am developing a Windows Mobile application using WM6 SDK. The application is a Managed code (using C#) & I would like to know the steps to be taken in order to call native functions.
…
0
votes
1answer
21 views
Windows Mobile application icon
Is it possible to specify the application icon for a windows mobile app from a resource file or other configuration besides the .csproj?
The reason I would like to do this is because I have an …
0
votes
1answer
52 views
sending USSD in C#?
Hi,
I want to write a simple c# application runs on windows mobile 6 which can send USSD messages
Is there any library that could help me in doing this??
or is there any examples that explains how …
0
votes
3answers
57 views
Popular .NET Compact Framework open source applications / components
In my company I am responsible for the development of a .NET CF application which runs on top of Windows CE. We have invested much time in the development of a GUI framework, a top-level design which …
0
votes
0answers
3 views
Does Mobile phone have Server : Port Scheme ?
Hi
I hope I can get all the help i can get here. I am new to mobile phone programming. I find networking very interesting and I have this question:
Does Mobile phone like WinMo or other phone have …
0
votes
1answer
25 views
Convert Xaml UI to .Net Compact Framework UI
Is it possible to convert Xaml into a .Net Compact Framework UI (dll, exe, etc...)? In fact any XML based representation would be nice (QT, GTK, etc...).
0
votes
1answer
43 views
SQL Server CE rollback does not undo delete.
I am using SQL Server CE 3.5 and C# with the .NET Compact Framework 3.5. In my code I am inserting a row, then starting a transaction, then deleting that row from a table, and then doing a rollback on …
1
vote
4answers
132 views
Can anyone tell me were I am making mistake in the snippet
public partial class Form1 : Form
{
[DllImport("coredll.dll")]
static extern int SetWindowLong(IntPtr hWnd, int nIndex, int dwNewLong);
const int GWL_WNDPROC = -4;
public delegate int …
1
vote
2answers
558 views
[C#] Convert string to double with 2 digit after decimal separator
All began with these simple lines of code:
string s = "16.9";
double d = Convert.ToDouble(s);
d*=100;
The result should be 1690.0, but it's not. d is equal to 1689.9999999999998.
All I want to do …
0
votes
1answer
20 views
finger print reader and .net cf
I am looking for a finger print sdk that can run on .net compact frame work and can make use of the in built finger scanning hardware of pda's like hp ipaq etc .thanks
1
vote
4answers
822 views
Windows Mobile App - Play Stream Over MMS Protocol?
NOTE: This question is being reasked because I accidentally clicked Community Wiki in the previous one, and obviously that didn't provide enough incentive in the form of reputation for people to …
1
vote
1answer
94 views
Achieving AES-256 Channel Encryption with the .NET Compact Framework
Hi There,
I am working on a business application where the clients are Windows Mobile 6.1 Professional devices. The server is a Java enterprise application.
The industry working group recommends …
2
votes
3answers
199 views
WinForms: NumericUpDown (.NET CF 3.5) and real numbers
NumericUpDown seems to be only dealing with integers. How can I modify it (?), so I can use doubles as Value and Increment?
0
votes
1answer
130 views
How can I create a finger scrollable Textbox in WM 6.5?
Hi everybody.
I just noticed something weird in WM 6.5 emulators. Unlike 6.1 where finger panning kind of worked, the only way to scroll a Textbox appears to be through scrollbars.
This behaviour is …
1
vote
3answers
492 views
Windows Mobile App - Play MMS Stream?
I'm trying to write a Windows Mobile app targeting Windows Mobile 6.x that will stream an internet radio stream delivered via MMS protocol (just one feature among other things).
Does the .NET Compact …
