Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. Mobile Development
  3. Mobile
  4. Guidance regarding developing application for Win CE with VC++5

Guidance regarding developing application for Win CE with VC++5

Scheduled Pinned Locked Moved Mobile
c++data-structuresbusinesshelptutorial
2 Posts 2 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • T Offline
    T Offline
    Trupti Mehta
    wrote on last edited by
    #1

    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

    I 1 Reply Last reply
    0
    • T Trupti Mehta

      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

      I Offline
      I Offline
      Ibuprofen
      wrote on last edited by
      #2

      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

      1 Reply Last reply
      0
      Reply
      • Reply as topic
      Log in to reply
      • Oldest to Newest
      • Newest to Oldest
      • Most Votes


      • Login

      • Don't have an account? Register

      • Login or register to search.
      • First post
        Last post
      0
      • Categories
      • Recent
      • Tags
      • Popular
      • World
      • Users
      • Groups