|
Hello,
does anyone know how to unlock the phone via program code, so that the nagging windows dialog for entering the pin code does not apear?
Thanks a lot for help.
|
|
|
|
|
Hello.
I am writing for smartphone in vb.net using vs2003, compact framework 1.1, targeting windows mobile 2003 os.
I cannot get the app to respond to my own written events, regardless of where I place focus on load. Immediate task is to place checkboxes in a panel and use the number keys to check or uncheck. The checkboxes correspond to numbers on the pad. The up/down arrow keys would move focus to another panel of checkboxes and perform the same task.
Here is an example of the sub I'm trying to configure correctly:
Private Sub Form1_KeyDown(ByVal sender As System.Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles Mybase.KeyDown
'if the 1 key is pressed, check the first checkbox
If (e.KeyCode = System.Windows.Forms.Keys.D1) Then
If CheckBox1.CheckState = CheckState.Unchecked Then
CheckBox1.CheckState = CheckState.Checked
GoTo handled
End If
End If
'if the 2 key is pressed, check the second checkbox
If (e.KeyCode = System.Windows.Forms.Keys.D2) Then
If CheckBox2.CheckState = CheckState.Unchecked Then
CheckBox2.CheckState = CheckState.Checked
GoTo handled
End If
End If
'and so on
handled: e.Handled = False
End Sub
Advice is greatly appreciated.
Eric
|
|
|
|
|
|
|
thanks blue boy
Pavan Pareta
|
|
|
|
|
hope that link helped you
I Love SQL
|
|
|
|
|
how can i do connection Pockt pc emulator with active sysnc ?
i mean how pockt pc see my iis on pc(For making synchronize Merage sql server 2000)
123
|
|
|
|
|
We are using visual .net 2005 platform for develpoing our application in pocket pc 2003 (ce.net).
our problem is that when the application loads /moves from one form to another then it shows flickring effect(one to two seconds desktop of pocket pc is seen during navigation ).so how to remove or resolve it?????
so flickring is not there and their is fast flow from one form to another.
|
|
|
|
|
Is there any bluetooth hardware that has a keyboard and can control the computer remotely? And how can I program on the computer's side to get and interpret the signals from the bluetooth hardware as I need?
It's better if the computer can receive the original ditial voice data stream from the bluetooth hardware.
Thanks very much.
|
|
|
|
|
I got Bluetooth keyboard which is working with my PDA.
Instalation sofware came with Keyboard.
|
|
|
|
|
Hi, everyone!
Now I'm developing an application on PDA. The platform is Windows Pocket 2003. I want to use timer to inspect the communication. But I find the timmer0 isn't work after I call the SetTimer(0,1000,NULL). I don't know the reason. Could someone be kind to tell me? Thanks!
yours
whiteclouds
|
|
|
|
|
Hello Everyone,
A couple of quick questions. If I want to run a cf.net 2.0 app on a tablet pc as well as a pocket pc, is there any special porting required? I'm sure the screen size will be something that needs to be considered, but I'm thinking outside of that. Also, is there a good tablet pc emulator that anyone could recommend for testing?
Thanks,
Ryan
|
|
|
|
|
How can I detect that the device has been turned on? I've searched for this and found some material but nothing that I can understand. Anyone know of examples in C++?
Thanks
|
|
|
|
|
We use the RequestPowerNotifications API. I thought there was a sample somewhere on MSDN but can't see it.
There is a sample here[^].
|
|
|
|
|
I am new to CE development and need to develop a database application that several ce devices will sync with a wireless server on job status for a custom manufacturing firm. The more I read on microsoft the more I'm confused...please help. What is the purpose of embeded? I've got Visual Studio 2005 and thought I could simply start writing...but it seems I have to work with the os and platform builder etc. I've got the Windows CE.net book by Douglas Bowling, but it is written for CE 3.0 and with older Visual Studio. I'm looking to knock this application out quickly...what is the fastest track to learn? Do I simply need to bite the bullet and watch all the embedded, OS, Platform builder tutorials? Or is there a faster track?
learning...
|
|
|
|
|
In my all forms where I have Images I get this error
"An error message cannot be displayed because an optional resource assembly containing it cannot be found"
when I try to open form.
Should I re-install anything ?
Regards.
I Love SQL
|
|
|
|
|
To save space, the error messages aren't included in the .NET Compact Framework CAB. If you need them, deploy System_SR_ENU.CAB from C:\Program Files\Microsoft Visual Studio 8\SmartDevices\SDK\CompactFramework\2.0\v2.0\WindowsCE\Diagnostics.
|
|
|
|
|
Thanks for your response.
I have hard resetet Pocket PC then I have reinstalled application and it works fine.
Regards
I Love SQL
|
|
|
|
|
How can I get used Memory Size on my Pocket PC?
Regards
I Love SQL
|
|
|
|
|
In C/C++, call GlobalMemoryStatus . For devices with RAM-based storage (i.e. Windows Mobile 2003 and older, custom CE platforms) call GetSystemMemoryDivision to find out how much space is allocated to programs versus data.
From .NET I think you currently have to use DllImport to call the above functions. See http://www.pinvoke.net/default.aspx/coredll/GlobalMemoryStatus.html[^] for details.
|
|
|
|
|
I'm looking to enter text in a textbox using only numeric keys (without holding down a seperate key to get it's numeric value). Like the phone dialer and the calculator.
Can someone point me in the right direction? VB or C# is fine. I have seen the Smartphone snippets, but they don't appear to work on the Pocket PC phone devices.
Any help would be appreciated.
ronkb
|
|
|
|
|
Hello,
How do I install an ActiveX control onto the PocketPC emulator for testing?
I've been trying to figure this out for hours!
Thanks!
Ian
|
|
|
|
|
In my Pocket PC application I set image gif animation and in run-time image doesn't appear animating.
How can i enable animating of gif image on runtime of application?
I Love SQL
|
|
|
|
|
Hi,
out of the box the Compact Framework controls will not support animated gifs.
If you are able to use the OpenNETCE SDF library you may be able to utilise their OpenNETCF.Windows.Forms.AnimateCtl control for this purpose.
Otherwise you are probably best to extract the individual GIF frames and add them all as embedded resources into your application. you could then use a timer and a picture box to cycle through the images etc.
Hope it helps,
Christopher Fairbairn
|
|
|
|
|
Thanks for your reply , I will gonna chceck that.
I Love SQL
|
|
|
|