![]() |
Text labels on a Userform
For my userform, I am handling "UserForm_Click()" to detect
when someone clicks on the form. The problem is, my Userform contains about 20 individual "text label" controls which sit on top of the form. Therefore, UserForm_Click() only gets called someone clicks an area that is not covered by a text label.... Is there an easy way to detect if someone clicks on ANY area of the userform?? I fear that I might have to handle 20 individual "Label_Click()" functions in addition to the UserforClick() function, which seems like overkill. thank u |
Text labels on a Userform
Hi,
Depending on you layout of labels you could either, random layout, create a class to handle the click event of many labels. John's example should help explain the principle. http://spreadsheetpage.com/index.php...er_dialog_box/ ordered layout, place a transparent label over the top of the other labels and capture the click in that 1 label. Cheers Andy Robert Crandal wrote: For my userform, I am handling "UserForm_Click()" to detect when someone clicks on the form. The problem is, my Userform contains about 20 individual "text label" controls which sit on top of the form. Therefore, UserForm_Click() only gets called someone clicks an area that is not covered by a text label.... Is there an easy way to detect if someone clicks on ANY area of the userform?? I fear that I might have to handle 20 individual "Label_Click()" functions in addition to the UserforClick() function, which seems like overkill. thank u -- Andy Pope, Microsoft MVP - Excel http://www.andypope.info |
Text labels on a Userform
you could add another label. make it big enough to cover all the forms
labels, make it transparent and bring it to the front. then you only have to handle one click event. You may need a couple if you can't reorganize the labels, but it might mean coding a few new labels rather than many ...just an idea "Robert Crandal" wrote in message ... For my userform, I am handling "UserForm_Click()" to detect when someone clicks on the form. The problem is, my Userform contains about 20 individual "text label" controls which sit on top of the form. Therefore, UserForm_Click() only gets called someone clicks an area that is not covered by a text label.... Is there an easy way to detect if someone clicks on ANY area of the userform?? I fear that I might have to handle 20 individual "Label_Click()" functions in addition to the UserforClick() function, which seems like overkill. thank u |
All times are GMT +1. The time now is 05:55 PM. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com