Hello!
I'm trying to use OpenID on my Windows Form application. Is there any way to use it? A web service or something simillar?
The application runs on a Windows Mobile 5.0 and above, with C# and Compact Framework 2.0 SP2.
Thank you!
...
Hello,
I have an application developed to run on a particular cellphone running windows mobile. The application is configured to run in full screen using the phone physical keyboard as an interface.
At this point the client wants the application to run on cellphones that don't have a physical keyboard. This means that my application wi...
Hello,
I have seen this issue on google, however, nobody seems to be able to solve it. I am writing a Windows Mobile app that utilizes a WCF service that I created. When I deploy this app to the device, it runs fine as do other non-mobile apps that consume this web service. When I debug it (bluetooth or usb cradle connected), SOME of...
Hi,
I am developing an application for windows mobile in which I have a logout functionality at each form I open.
So while pressing the logout button I am able to delete the username password from the memory but I am not able to drag the user to the login screen again while freeing all the memory and closing all the forms.
Anybody kno...
Hi,
I am using c# .net compact framework 3.5 and i want to convert a video file to byte array so that i may upload it on the server.
In the similar manner i am doing the image uploading which is getting the success result....
HttpWebRequest request;
request.ContentType = "image/jpeg";
request.ContentLength = byteArray.Len...
Hi,
I am new to windows mobile. I need to set a background image for the form but i can see only the option to set background colour. Also i tried to set background image for tab control there also i didnt see any option to set background image. How can i set the background image.
Thanks,
...
Hi,
we decided to design a keyboard(bluetooth or data cable) for using on a smartphone.
so, can we programming a smartphone by compact framework?is that possible?
...
protected override void OnPaint(PaintEventArgs e)
{
base.OnPaint(e);
Bitmap bmp = new Bitmap("C:\\test.bmp");
e.Graphics.DrawImage(bmp, 0, 0);
}
I tried the above code but an error saying could not find part of the path is shown in the line
Bitmap bmp = new Bitmap("C:\\test.bmp");
what could be the ...
I'm looking into purchasing the new Samsung Intrepid Windows Mobile 6.5 device. Before I plunk down the cash, I'm investigating the available APIs and support resources. I have one question I want answered. It's one question but it's a big one for me. Can I access the GPS coordinates of the device? Does this phone have a location API? I'...
I need to make a connection to a Sybase (SQL Anywhere) database in a Windows CE app over the network (wifi).
I'm hoping someone in the SO community has done before and can't point me in the right direction. There doesn't seem to be a lot of information on the topic. I've tried google, SO and the sybase website.
Thanks in advance
...
how to maximize a windows mobile window ?
...
Hi,
I have placed a picture as background to the form.
protected override void OnPaintBackground(PaintEventArgs e)
{
e.Graphics.DrawImage(bmp, 0, 0);
}
after that i placed a label over the form and set the backcolour to Transparent but it is not working. How can i get the transparency for the label backcolor
...
Hi,
I am using axWnidowsMediaPlayer in my windows mobile application with compact framework 3.5 .
It was working beautifully few days ago but now whenever i try to play a song from url it shows the message
"Can not play the file.The file is either corrupted or the player does not support the format you are playing"
The same url is no...
Hi, currently I’m creating 2 applications (app A and B) for Windows Mobile 5.0 and using Compact Framework 2.0. App A is the main application and B is the sub application.
Below is the flow:
Start app A.
App A will start app B.
App B will do some process.
App B will kill app A.
App B will patch/upgrade app A. (ala update manager)
App ...
Hi All,
We would like to use IHTMLElementRender Interface in Windows mobile Pocket Internet Explorer for drawing HTML element content into our custom window DC but found that interface is not not exposed in PIE, Do we have any alternative PIE interface IPIEHTMLElementRender?
Regards,
Ramanand Bhat.
...
Hi all,
I have a small queary,
i have a sample application, which is developed in c# using .net 3.5 CF.
if the .net CF is not installed in the device an exception will rise, saying that latest
.net CF is not installed in machine.
i dont want this error message at all. I mean,i want to handle this exception.
i tried it doesn't even com...
Hi all,
I am trying to play videos from the url with activeX window media player in my windows mobile application. Previously i was using the code below in which i was passing the url. Few days ago the code worked fine but now it doesn't seem to work at all for any files for any extensions. It always gives the following error..
"Can no...
I am attempting to utilize a hardware button on my Motorola MC75 to perform the function of a button event that I created on the form. I have attempted to use the WindowsCE.Forms.HardwareButton class, however, I can't seem to get it working. I can't even capture any KeyDown event on the form. I set up the event and the KeyPreview is s...
Hello!
I'm developing a Windows Mobile WinForm application that uses Sql Server CE 3.1 with .NET Compact Framework 2.0 SP2 and C#.
I have a form that has a SqlCeConnection object, opened during all of it's execution time: I open the connection at startup and close it on event closing.
I also have a class to read the Sql Server CE data...
I would like to build a Bluetooth keyboard for a smartphone like this product.
This product has a hardware driver. How can I write device driver for my keyboard.
...