Best way to Jump from One to another !

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Hiren Joshi
    New Member
    • Feb 2008
    • 30

    Best way to Jump from One to another !

    Hello All,

    I am developing one application of quotation which has 7 forms in it... Now can any one suggest the best way to jump from one form to another?

    Do we have any option like Hyperlink? because I know we can use Command Buttons,but I want to try something else instead of command buttons...

    So if we can use Label with Hyperlink or something similar to it.

    e.g. in each form it should have link for rest of the 6 forms to move to the particular form directly.

    Thanks and Regards,

    Hiren
  • jamesd0142
    Contributor
    • Sep 2007
    • 471

    #2
    use code such as...

    hide the form your using
    [code=text]
    me.hide
    [/code]

    show a new form
    [code=text]
    formname.show
    [/code]

    Comment

    • Hiren Joshi
      New Member
      • Feb 2008
      • 30

      #3
      hi jamesd0142

      I know that code, but my main concern is I dont want to use simple command buttons but may be labels with hyperlink.

      So I want to know how to use hyperlink if that option is available

      Thanks

      Hiren

      Comment

      • jamesd0142
        Contributor
        • Sep 2007
        • 471

        #4
        ok sorry, well you can use normal labels and put code on the click event to show any form as u would a button...

        only thing is you willl have to hardcode every lable on each form from what i can see.

        Comment

        • daniel aristidou
          Contributor
          • Aug 2007
          • 494

          #5
          Hi what version of vb are you using later versions have a link label control..in order to create hyperlinks

          Comment

          • Killer42
            Recognized Expert Expert
            • Oct 2006
            • 8429

            #6
            At the simplest level, pretty much any control which supports a Click or MouseDown event would probably serve your purpose.

            You might also consider the use of MDI, or using panels in a statusbar control, or menu options.

            Comment

            Working...