Click here to Skip to main content
15,899,126 members
Home / Discussions / Mobile
   

Mobile

 
GeneralRe: NullReferenceException Pin
Arjun Marwaha4-Jun-08 21:23
Arjun Marwaha4-Jun-08 21:23 
AnswerRe: NullReferenceException Pin
Abhi suryawanshi22-May-08 21:00
Abhi suryawanshi22-May-08 21:00 
QuestionWhether to use different panel on same form is efficient or different panel on same form Pin
Abhi suryawanshi20-May-08 19:09
Abhi suryawanshi20-May-08 19:09 
AnswerRe: Whether to use different panel on same form is efficient or different panel on same form Pin
Abhi suryawanshi22-May-08 20:58
Abhi suryawanshi22-May-08 20:58 
Question[Message Deleted] Pin
Ibuprofen20-May-08 9:48
Ibuprofen20-May-08 9:48 
QuestionProject is running well.But exe is failed to run. Pin
Sritanu _ Ghosh19-May-08 20:27
Sritanu _ Ghosh19-May-08 20:27 
QuestionGuidance regarding developing application for Win CE with VC++5 Pin
Trupti Mehta19-May-08 1:28
Trupti Mehta19-May-08 1:28 
AnswerRe: Guidance regarding developing application for Win CE with VC++5 Pin
Ibuprofen20-May-08 20:14
Ibuprofen20-May-08 20:14 
question 2


I am not sure if its going to be the same in VC++, however in Visual Studio 2005, in C#

it creates the code to track all those buttons, here is a copy of some of it out of one my appliations

private void R1TimeSummaryViewDialog_KeyDown(object sender, KeyEventArgs e)
{
    if ((e.KeyCode == System.Windows.Forms.Keys.Up))
    {
        this.AutoScrollPosition = new System.Drawing.Point(0, ((0 - this.AutoScrollPosition.Y)
                        - 16));
        e.Handled = true;
    }
    if ((e.KeyCode == System.Windows.Forms.Keys.Down))
    {
        this.AutoScrollPosition = new System.Drawing.Point(0, ((0 - this.AutoScrollPosition.Y)
                        + 16));
        e.Handled = true;
    }
    if ((e.KeyCode == System.Windows.Forms.Keys.Up))
    {
        // Up
    }
    if ((e.KeyCode == System.Windows.Forms.Keys.Down))
    {
        // Down
    }
    if ((e.KeyCode == System.Windows.Forms.Keys.Left))
    {
        // Left
    }
    if ((e.KeyCode == System.Windows.Forms.Keys.Right))
    {
        // Right
    }
    if ((e.KeyCode == System.Windows.Forms.Keys.Enter))
    {
        // Enter
    }

}


Hope this helps.

Computer Programmer Web/Mobile .NET

QuestionNew World Pin
Yosh_18-May-08 23:05
professionalYosh_18-May-08 23:05 
AnswerRe: New World Pin
bilal haider3-Jun-08 3:28
bilal haider3-Jun-08 3:28 
GeneralRe: New World Pin
Yosh_9-Jun-08 2:32
professionalYosh_9-Jun-08 2:32 
QuestionPDA Development Pin
Sritanu _ Ghosh16-May-08 3:31
Sritanu _ Ghosh16-May-08 3:31 
AnswerRe: PDA Development Pin
Arjun Marwaha20-May-08 20:24
Arjun Marwaha20-May-08 20:24 
GeneralRe: PDA Development Pin
Sritanu _ Ghosh20-May-08 21:03
Sritanu _ Ghosh20-May-08 21:03 
Questionconnect to a remote MySQL Database Pin
FMfm15-May-08 12:10
FMfm15-May-08 12:10 
AnswerRe: connect to a remote MySQL Database Pin
Sritanu _ Ghosh16-May-08 3:35
Sritanu _ Ghosh16-May-08 3:35 
GeneralRe: connect to a remote MySQL Database Pin
FMfm16-May-08 10:59
FMfm16-May-08 10:59 
AnswerRe: connect to a remote MySQL Database Pin
Abhi suryawanshi22-May-08 21:04
Abhi suryawanshi22-May-08 21:04 
QuestionHow to bulid a one click installer for a Mobile 5 Application Pin
Ibuprofen15-May-08 8:38
Ibuprofen15-May-08 8:38 
AnswerRe: How to bulid a one click installer for a Mobile 5 Application Pin
Ibuprofen15-May-08 9:23
Ibuprofen15-May-08 9:23 
GeneralRe: How to bulid a one click installer for a Mobile 5 Application Pin
Ibuprofen15-May-08 10:53
Ibuprofen15-May-08 10:53 
QuestionHow populate a DataGrid (C.F 2.0 and VB.net) Pin
Hurricane300015-May-08 4:45
Hurricane300015-May-08 4:45 
AnswerRe: How populate a DataGrid (C.F 2.0 and VB.net) Pin
Arjun Marwaha15-May-08 20:46
Arjun Marwaha15-May-08 20:46 
GeneralRe: How populate a DataGrid (C.F 2.0 and VB.net) Pin
Hurricane300016-May-08 3:15
Hurricane300016-May-08 3:15 
Questioninjecting DLL into all processes in Symbian OS Pin
kalayni15-May-08 1:02
kalayni15-May-08 1:02 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.