CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2

Thread: Back Button

  1. #1
    Join Date
    Jan 2001
    Posts
    2

    Back Button

    I have been given a project for university which has a number of forms, which can be opened up by various different forms.
    I'am wanting to place a back button on each form to enable the calling form to be reloaded.
    I want this back button to work back through the forms until the first loaded form has been reached, much as the back button works on a web browser.


  2. #2
    Join Date
    Jan 2001
    Location
    NJ, USA
    Posts
    4

    Re: Back Button

    You will have to implement a STACK data stucture. Once you understand what a stack is and how it works, implementation is not very difficult. Unfortunately I don't have code with me right away. However if you want to find out, there will be a lot of resources available on the net. Just give a query like 'implement stack vb'.
    One particulat site where one version of code is implemented is 'http://www.vbonline.com/vb-mag/9603/toolbox/faq-win.htm' Check it out.


Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured