Determing sender in multiple event handles [Resolved]
Not sure that's clear. I have a button click event that handles the click event for two different buttons. They perform the same actions, except that in one, two consecutive boolean values are reversed (i.e., btn1 = true, false, btn2 = false, true).
Rather than duplicate code, I want the one click event to handle both. In the procedure, I need to determine which button was clicked so I can set the values appropriately. Is there any way to do this? Thanks.