|
I found a problem when using Excel's VBA programming interface.
That is, I create a new form, the system name is userForm, I changed the name property of this form to
frmFind, and save it. It is found that the name of the form in the drop-down box of the upper left corner of the editor entered in the VBA code is still userForm, and the corresponding click event generation process is also called UserForm_Click (), not frmFind_Click (). You must manually modify UserForm_Click () to frmFind_Click (). Is there any way to make the VBA code editor like VB to automatically change the name of the event handler function of the form? |
|