Maximize/Minimize Button

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • dr3amxstar
    New Member
    • May 2007
    • 55

    Maximize/Minimize Button

    Hi i have a question that i need help with. Im using VB express 2005 edition.

    First is that, is there any items/component that when u click it, it will open up to the other options? does Button or textfield allows it?

    Example :



    Thanks!

    Rgds
    dr3amxstar
  • hariharanmca
    Top Contributor
    • Dec 2006
    • 1977

    #2
    Originally posted by dr3amxstar
    Hi i have a question that i need help with. Im using VB express 2005 edition.

    First is that, is there any items/component that when u click it, it will open up to the other options? does Button or textfield allows it?

    Example :



    Thanks!

    Rgds
    dr3amxstar

    I think you are looking for Tree View.

    Comment

    • dr3amxstar
      New Member
      • May 2007
      • 55

      #3
      Originally posted by hariharanmca
      I think you are looking for Tree View.
      Hmm i thought tree view is like to organise structures/data? how do i go about using the tree view? is there any examples? how do a add a textbox at the child node

      Comment

      • hariharanmca
        Top Contributor
        • Dec 2006
        • 1977

        #4
        Originally posted by dr3amxstar
        Hmm i thought tree view is like to organise structures/data? how do i go about using the tree view? is there any examples? how do a add a textbox at the child node
        Okay, then you can use Tab control. otherwise you have to desigen the controls using frames..etc.,

        Comment

        • pureenhanoi
          New Member
          • Mar 2007
          • 175

          #5
          Originally posted by dr3amxstar
          Hi i have a question that i need help with. Im using VB express 2005 edition.

          First is that, is there any items/component that when u click it, it will open up to the other options? does Button or textfield allows it?

          Example :



          Thanks!

          Rgds
          dr3amxstar
          Maybe there is some component can do it for you. But if all that you would like is expand two textboxes and two labels only, you can do it for your-selft. Make the code for the upper component (maybe: labels, picture box or other component). When mouse click to it, resize the form enought to place lower controls. Set lower controls to visible and set focus to one of them. When you want hide lower component, simply set non-visible to them, and resize the form to fit with upper component.

          Comment

          • dr3amxstar
            New Member
            • May 2007
            • 55

            #6
            Originally posted by pureenhanoi
            Maybe there is some component can do it for you. But if all that you would like is expand two textboxes and two labels only, you can do it for your-selft. Make the code for the upper component (maybe: labels, picture box or other component). When mouse click to it, resize the form enought to place lower controls. Set lower controls to visible and set focus to one of them. When you want hide lower component, simply set non-visible to them, and resize the form to fit with upper component.
            I have 5 section that i need to expand.. talking back to treeview.. does it does this?

            Comment

            • dr3amxstar
              New Member
              • May 2007
              • 55

              #7
              Originally posted by hariharanmca
              Okay, then you can use Tab control. otherwise you have to desigen the controls using frames..etc.,
              Sorry im noob when it comes to designing GUI. What frames are u refering to?

              Comment

              Working...