V
vijay
Hi
I am using a carnavigator Device. the Device have a remote control and
Hardware buttons.
when ever a key pressed on remote control or Hardware buttons is
pressed, the driver sends a Message to the application.
Example: Volume Increase Button: when we press this button WM_VOLUME_UP
event is sent to the application.
in EVC++, i used to handle these events in "WndProc", how to handle the
events in C# using .net Compact Framework.
i tried to Override the WndProc in a Form,
protected override void WndProc( ref Message msg )
{
//.... Message handling prrocedure
// call the base class WndProc for default message handling
//
base.WndProc( ref msg );
}
when i compile, i am getting the following error.
'HardwareKeyAccess.Form1.WndProc(ref
Microsoft.WindowsCE.Forms.Message)': no suitable method found to
override
I search this fourm, i found WndProc is not supported in .netCF
http://groups.google.co.in/group/mi...67cdbcbbe58?q=WndProc&rnum=4#d0cb067cdbcbbe58
How to handle the Remote Contorl events in .net cf?
Thank you
I am using a carnavigator Device. the Device have a remote control and
Hardware buttons.
when ever a key pressed on remote control or Hardware buttons is
pressed, the driver sends a Message to the application.
Example: Volume Increase Button: when we press this button WM_VOLUME_UP
event is sent to the application.
in EVC++, i used to handle these events in "WndProc", how to handle the
events in C# using .net Compact Framework.
i tried to Override the WndProc in a Form,
protected override void WndProc( ref Message msg )
{
//.... Message handling prrocedure
// call the base class WndProc for default message handling
//
base.WndProc( ref msg );
}
when i compile, i am getting the following error.
'HardwareKeyAccess.Form1.WndProc(ref
Microsoft.WindowsCE.Forms.Message)': no suitable method found to
override
I search this fourm, i found WndProc is not supported in .netCF
http://groups.google.co.in/group/mi...67cdbcbbe58?q=WndProc&rnum=4#d0cb067cdbcbbe58
How to handle the Remote Contorl events in .net cf?
Thank you