Here's the scoop:

I have six controls on my form - three text boxes and
three label boxes. I also have a menu defined and
call it as a popup menu when the user _LEFT clicks_
on the textboxes and _RIGHT clicks_ on the label
boxes. It's an early lab for a client/server class.
The problem is - when a user selects a choice on the
popup menu, I need to know what control he/she just
clicked on to bring up the popup menu in the first place.
This way I will only affect the textboxes or the
labels but not both. Since labels cannot get
focus, the textboxes are always the "active control"
so TypeOf(form.ActiveControl) doesn't work in my case.
Any suggestions? I can be more specific if necessary.

Thanks!!!!

-K. L. Aelspear