I have some actions that occur when a user clicks on a command button (it is an array of cmd buttons---ex: cmd1(1), cmd1(2), cmd1(3), etc).
I want to CALL that event (or Raise it, I guess is the correct term), by clicking on a different command button.
(The 'different' command button moves one of the buttons in the array to a certain location, and the arraybutton knows where it is and in the MouseUp event, accomplishes some action(s).)
Simply using (for example) "cmd1_Click(2).Value=True" will only cause a Click Event to occur, not a mouseup event.
How do I raise a MouseUp event in a Command Button in an array, programmatically?
I want to CALL that event (or Raise it, I guess is the correct term), by clicking on a different command button.
(The 'different' command button moves one of the buttons in the array to a certain location, and the arraybutton knows where it is and in the MouseUp event, accomplishes some action(s).)
Simply using (for example) "cmd1_Click(2).Value=True" will only cause a Click Event to occur, not a mouseup event.
How do I raise a MouseUp event in a Command Button in an array, programmatically?