"Efficieny for poket PC"

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • wingsganesh
    New Member
    • Nov 2007
    • 16

    "Efficieny for poket PC"

    Hi guys,
    Am working in Pocket PC 2005.In my new project have more navigations and I need to display more images .
    am using multiple forms, I think it is also possible to make single form but it is complicated.
    any one can give idea about this and which is more efficiency and what is the reason .............
    My Question is Which is make fast and efficiency , using single for or multiple form........... ..


    if any link for this Quote , send me............. ..

    Many thanls......... .
  • RedSon
    Recognized Expert Expert
    • Jan 2007
    • 4980

    #2
    Originally posted by wingsganesh
    Hi guys,
    Am working in Pocket PC 2005.In my new project have more navigations and I need to display more images .
    am using multiple forms, I think it is also possible to make single form but it is complicated.
    any one can give idea about this and which is more efficiency and what is the reason .............
    My Question is Which is make fast and efficiency , using single for or multiple form........... ..


    if any link for this Quote , send me............. ..

    Many thanls......... .
    I'm not sure what you are talking about. If you have more controls on a form then will fit on a page, you can use a scroll bar. If the form has some kind of logical structure you can use tabs. If the form is like a wizard then you can use form1 then form2 then form3 and so on until the program is finished.

    Comment

    • markmcgookin
      Recognized Expert Contributor
      • Dec 2006
      • 648

      #3
      Originally posted by RedSon
      I'm not sure what you are talking about. If you have more controls on a form then will fit on a page, you can use a scroll bar. If the form has some kind of logical structure you can use tabs. If the form is like a wizard then you can use form1 then form2 then form3 and so on until the program is finished.
      Alternatively if you are takling about performance, creating a static form (i.e. the instance of the form is created at compile time) should load quicker if you have a lot of controls/items on the form. It's not very OO programming, but very little in mobile development is as it should be...

      Comment

      Working...