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. General Programming
  3. Visual Basic
  4. Invoking a Button_Click() event from a seperate form

Invoking a Button_Click() event from a seperate form

Scheduled Pinned Locked Moved Visual Basic
helpquestion
24 Posts 7 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.
  • R Offline
    R Offline
    reegan41
    wrote on last edited by
    #1

    Hi, I have two seperate forms. Lets just call them FormA and FormB. I have a function in FormA called Button_Click(). How would I (while in FormB) call this function? I have tried, while in the FormB code, using Form_FormA.Button_Click. But that doesn't seem to work. Can anyone help me with this?

    N D T N 4 Replies Last reply
    0
    • R reegan41

      Hi, I have two seperate forms. Lets just call them FormA and FormB. I have a function in FormA called Button_Click(). How would I (while in FormB) call this function? I have tried, while in the FormB code, using Form_FormA.Button_Click. But that doesn't seem to work. Can anyone help me with this?

      N Offline
      N Offline
      nlarson11
      wrote on last edited by
      #2

      if formA is the one that created formB: - formA needs to pass over a delegate to formB so that B can call back to A. - another method, however not a good one, is for A to pass over a pointer of itself to B then B can call this routine (routine must be changed to public for this to work).

      R 1 Reply Last reply
      0
      • R reegan41

        Hi, I have two seperate forms. Lets just call them FormA and FormB. I have a function in FormA called Button_Click(). How would I (while in FormB) call this function? I have tried, while in the FormB code, using Form_FormA.Button_Click. But that doesn't seem to work. Can anyone help me with this?

        D Offline
        D Offline
        Dave Kreskowiak
        wrote on last edited by
        #3

        This is a bad idea. The function you're calling, since it's used by BOTH forms, should be moved to a seperate class as a, possibly, shared method. You will, of course, have to supply this new method, through the method parameters, with the data it needs to do its job.

        A guide to posting questions on CodeProject[^]
        Dave Kreskowiak Microsoft MVP Visual Developer - Visual Basic
             2006, 2007

        P 1 Reply Last reply
        0
        • D Dave Kreskowiak

          This is a bad idea. The function you're calling, since it's used by BOTH forms, should be moved to a seperate class as a, possibly, shared method. You will, of course, have to supply this new method, through the method parameters, with the data it needs to do its job.

          A guide to posting questions on CodeProject[^]
          Dave Kreskowiak Microsoft MVP Visual Developer - Visual Basic
               2006, 2007

          P Offline
          P Offline
          Paul Conrad
          wrote on last edited by
          #4

          Dave Kreskowiak wrote:

          This is a bad idea. The function you're calling, since it's used by BOTH forms

          I agree. It would open a can of worms for debugging headaches...

          "The clue train passed his station without stopping." - John Simmons / outlaw programmer

          1 Reply Last reply
          0
          • N nlarson11

            if formA is the one that created formB: - formA needs to pass over a delegate to formB so that B can call back to A. - another method, however not a good one, is for A to pass over a pointer of itself to B then B can call this routine (routine must be changed to public for this to work).

            R Offline
            R Offline
            reegan41
            wrote on last edited by
            #5

            Thanks, I'll give it a shot

            1 Reply Last reply
            0
            • R reegan41

              Hi, I have two seperate forms. Lets just call them FormA and FormB. I have a function in FormA called Button_Click(). How would I (while in FormB) call this function? I have tried, while in the FormB code, using Form_FormA.Button_Click. But that doesn't seem to work. Can anyone help me with this?

              T Offline
              T Offline
              TomGarth
              wrote on last edited by
              #6

              FormA.Button.PerformClick

              Tom Garth Developer R. L. Nelson and Associates, Inc., Virginia

              D 1 Reply Last reply
              0
              • T TomGarth

                FormA.Button.PerformClick

                Tom Garth Developer R. L. Nelson and Associates, Inc., Virginia

                D Offline
                D Offline
                Dave Kreskowiak
                wrote on last edited by
                #7

                That only works if FormB has a reference to the existing FormA object and that reference is called FormA. Not a good idea.

                A guide to posting questions on CodeProject[^]
                Dave Kreskowiak Microsoft MVP Visual Developer - Visual Basic
                     2006, 2007

                T 1 Reply Last reply
                0
                • D Dave Kreskowiak

                  That only works if FormB has a reference to the existing FormA object and that reference is called FormA. Not a good idea.

                  A guide to posting questions on CodeProject[^]
                  Dave Kreskowiak Microsoft MVP Visual Developer - Visual Basic
                       2006, 2007

                  T Offline
                  T Offline
                  TomGarth
                  wrote on last edited by
                  #8

                  Dave, It sure sounded like the 2 forms are part of a single project. If they are, then each has a reference to the other in My.Forms.

                  Tom Garth Developer R. L. Nelson and Associates, Inc., Virginia

                  D 1 Reply Last reply
                  0
                  • T TomGarth

                    Dave, It sure sounded like the 2 forms are part of a single project. If they are, then each has a reference to the other in My.Forms.

                    Tom Garth Developer R. L. Nelson and Associates, Inc., Virginia

                    D Offline
                    D Offline
                    Dave Kreskowiak
                    wrote on last edited by
                    #9

                    TomGarth wrote:

                    If they are, then each has a reference to the other in My.Forms.

                    I never use it and never will. It's just too VB6'ish to me. I'd rather they did it the correct way then work around it and learn a bad habit they can't transfer to another language.

                    A guide to posting questions on CodeProject[^]
                    Dave Kreskowiak Microsoft MVP Visual Developer - Visual Basic
                         2006, 2007

                    T 1 Reply Last reply
                    0
                    • D Dave Kreskowiak

                      TomGarth wrote:

                      If they are, then each has a reference to the other in My.Forms.

                      I never use it and never will. It's just too VB6'ish to me. I'd rather they did it the correct way then work around it and learn a bad habit they can't transfer to another language.

                      A guide to posting questions on CodeProject[^]
                      Dave Kreskowiak Microsoft MVP Visual Developer - Visual Basic
                           2006, 2007

                      T Offline
                      T Offline
                      TomGarth
                      wrote on last edited by
                      #10

                      Maybe I don't understand what you're saying. Manipulating forms from other forms in a single application is perfectly normal, and not a bad habit. If you have 2 forms in your application and 1 is open, how much code do you write to open the other one?

                      Tom Garth Developer R. L. Nelson and Associates, Inc., Virginia

                      D 1 Reply Last reply
                      0
                      • T TomGarth

                        Maybe I don't understand what you're saying. Manipulating forms from other forms in a single application is perfectly normal, and not a bad habit. If you have 2 forms in your application and 1 is open, how much code do you write to open the other one?

                        Tom Garth Developer R. L. Nelson and Associates, Inc., Virginia

                        D Offline
                        D Offline
                        Dave Kreskowiak
                        wrote on last edited by
                        #11

                        It's not having one form open another that's the problem. It's having one form manipulate the controls of another that violates the rules of encapsulation.

                        A guide to posting questions on CodeProject[^]
                        Dave Kreskowiak Microsoft MVP Visual Developer - Visual Basic
                             2006, 2007

                        T N 2 Replies Last reply
                        0
                        • D Dave Kreskowiak

                          It's not having one form open another that's the problem. It's having one form manipulate the controls of another that violates the rules of encapsulation.

                          A guide to posting questions on CodeProject[^]
                          Dave Kreskowiak Microsoft MVP Visual Developer - Visual Basic
                               2006, 2007

                          T Offline
                          T Offline
                          TomGarth
                          wrote on last edited by
                          #12

                          You say Bad Habit, I say RAD!!! ...and VB6 rocks, and so did VB5, 4, 3, etc.

                          Tom Garth Developer R. L. Nelson and Associates, Inc., Virginia

                          D L 3 Replies Last reply
                          0
                          • D Dave Kreskowiak

                            It's not having one form open another that's the problem. It's having one form manipulate the controls of another that violates the rules of encapsulation.

                            A guide to posting questions on CodeProject[^]
                            Dave Kreskowiak Microsoft MVP Visual Developer - Visual Basic
                                 2006, 2007

                            N Offline
                            N Offline
                            nlarson11
                            wrote on last edited by
                            #13

                            just for my education... in your shared method or method within a class idea... if the click routine only contains data/controls that are within formA. is a delegate the answer or do you have another technique?

                            D 1 Reply Last reply
                            0
                            • T TomGarth

                              You say Bad Habit, I say RAD!!! ...and VB6 rocks, and so did VB5, 4, 3, etc.

                              Tom Garth Developer R. L. Nelson and Associates, Inc., Virginia

                              D Offline
                              D Offline
                              Dave Kreskowiak
                              wrote on last edited by
                              #14

                              TomGarth wrote:

                              You say Bad Habit, I say RAD!!!

                              I say unsupportable...

                              A guide to posting questions on CodeProject[^]
                              Dave Kreskowiak Microsoft MVP Visual Developer - Visual Basic
                                   2006, 2007

                              1 Reply Last reply
                              0
                              • N nlarson11

                                just for my education... in your shared method or method within a class idea... if the click routine only contains data/controls that are within formA. is a delegate the answer or do you have another technique?

                                D Offline
                                D Offline
                                Dave Kreskowiak
                                wrote on last edited by
                                #15

                                If I read this correctly... If the click handler only does some kind of setup for the form itself, then yes, I'd use a delegate to make the call. But, I've never sen the need to have a child dialog, or any other form, tell another form how to set itself up. I've always used a shared state object and/or events fired by the data model to tell the subscribers that they might want to adapt to a change in the data.

                                A guide to posting questions on CodeProject[^]
                                Dave Kreskowiak Microsoft MVP Visual Developer - Visual Basic
                                     2006, 2007

                                N 1 Reply Last reply
                                0
                                • D Dave Kreskowiak

                                  If I read this correctly... If the click handler only does some kind of setup for the form itself, then yes, I'd use a delegate to make the call. But, I've never sen the need to have a child dialog, or any other form, tell another form how to set itself up. I've always used a shared state object and/or events fired by the data model to tell the subscribers that they might want to adapt to a change in the data.

                                  A guide to posting questions on CodeProject[^]
                                  Dave Kreskowiak Microsoft MVP Visual Developer - Visual Basic
                                       2006, 2007

                                  N Offline
                                  N Offline
                                  nlarson11
                                  wrote on last edited by
                                  #16

                                  the only situation I can think of is when formB is a modal form and it's answer will dictate what formA will do... dim oFrm as formB If oFrm.showdialog() = DialogResult.OK Then 'change the state of formA . . . if they are independent of each other then I would agree...

                                  D 1 Reply Last reply
                                  0
                                  • T TomGarth

                                    You say Bad Habit, I say RAD!!! ...and VB6 rocks, and so did VB5, 4, 3, etc.

                                    Tom Garth Developer R. L. Nelson and Associates, Inc., Virginia

                                    L Offline
                                    L Offline
                                    leckey 0
                                    wrote on last edited by
                                    #17

                                    TomGarth wrote:

                                    VB6 rocks, and so did VB5, 4, 3

                                    Oh, I soooo hope you are being sarcastic.

                                    _____________________________________________ Flea Market! It's just like...it's just like...A MINI-MALL!

                                    P 1 Reply Last reply
                                    0
                                    • L leckey 0

                                      TomGarth wrote:

                                      VB6 rocks, and so did VB5, 4, 3

                                      Oh, I soooo hope you are being sarcastic.

                                      _____________________________________________ Flea Market! It's just like...it's just like...A MINI-MALL!

                                      P Offline
                                      P Offline
                                      Paul Conrad
                                      wrote on last edited by
                                      #18

                                      I hope he is being sarcastic. Needs to put the [sarcasm] ... [/sarcasm[ tags around it, if he is.

                                      "Any sort of work in VB6 is bound to provide several WTF moments." - Christian Graus

                                      1 Reply Last reply
                                      0
                                      • N nlarson11

                                        the only situation I can think of is when formB is a modal form and it's answer will dictate what formA will do... dim oFrm as formB If oFrm.showdialog() = DialogResult.OK Then 'change the state of formA . . . if they are independent of each other then I would agree...

                                        D Offline
                                        D Offline
                                        Dave Kreskowiak
                                        wrote on last edited by
                                        #19

                                        nlarson11 wrote:

                                        when formB is a modal form and it's answer will dictate what formA will do...

                                        Then FormB exposes it's status as properties. FormA then decides what it's going to do with that data and alters its own user interface accordingly. FormB should never know anything about the form that launched it.

                                        A guide to posting questions on CodeProject[^]
                                        Dave Kreskowiak Microsoft MVP Visual Developer - Visual Basic
                                             2006, 2007

                                        N 1 Reply Last reply
                                        0
                                        • T TomGarth

                                          You say Bad Habit, I say RAD!!! ...and VB6 rocks, and so did VB5, 4, 3, etc.

                                          Tom Garth Developer R. L. Nelson and Associates, Inc., Virginia

                                          D Offline
                                          D Offline
                                          Dave Kreskowiak
                                          wrote on last edited by
                                          #20

                                          TomGarth wrote:

                                          ...and VB6 rocks, and so did VB5, 4, 3, etc.

                                          I sure hope your high on something. It's the only explanation for a statement like that.

                                          A guide to posting questions on CodeProject[^]
                                          Dave Kreskowiak Microsoft MVP Visual Developer - Visual Basic
                                               2006, 2007

                                          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