Guidance regarding developing application for Win CE with VC++5
-
Hello, I have to build an application with VC++5 on win CE platform. The application needs one after the other input, display some & confirmation. Application also needs that by clicking up or down arrow, it should move to previous or backwards screen & let the user edit if required. I have worked on Mobile applications, but this platforma is new for me. My concerns regarding the matter : 1) How should I bring one after another dialogs; making so mnay dialogs will make the application heavy. What technique should be used to make the application small and fulfill the requirements. I believe & hope their must be some way to achieve this in a simple manner. 2) How to track the up, down, Ok, Cancel, Left , Right buttons/keys? Their must be something like VK_...., I ma not sure and don't know. I think, that the screens need to go up or down, so, they must be saved in maybe an array. A Common dialog box can be made up and things can be worked or not? Please help me out to solve this confusion and make work easy but light too. Any help is appreciated. Thanks in advance.
Thanks Terry
-
Hello, I have to build an application with VC++5 on win CE platform. The application needs one after the other input, display some & confirmation. Application also needs that by clicking up or down arrow, it should move to previous or backwards screen & let the user edit if required. I have worked on Mobile applications, but this platforma is new for me. My concerns regarding the matter : 1) How should I bring one after another dialogs; making so mnay dialogs will make the application heavy. What technique should be used to make the application small and fulfill the requirements. I believe & hope their must be some way to achieve this in a simple manner. 2) How to track the up, down, Ok, Cancel, Left , Right buttons/keys? Their must be something like VK_...., I ma not sure and don't know. I think, that the screens need to go up or down, so, they must be saved in maybe an array. A Common dialog box can be made up and things can be worked or not? Please help me out to solve this confusion and make work easy but light too. Any help is appreciated. Thanks in advance.
Thanks Terry
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