Hi all,
If you want to perform an action on multiple items on a user form, do they have to be performed individually or is there a way to perform the operation as a group. For example, lets say that I want to set all text boxes on a user form to blank when I click a command button. I am currently doing this:
Is there an easier way to do this?
Regards,
Mike
If you want to perform an action on multiple items on a user form, do they have to be performed individually or is there a way to perform the operation as a group. For example, lets say that I want to set all text boxes on a user form to blank when I click a command button. I am currently doing this:
Code:
Tb_TailNo.Value = ""
Tb_Register.Value = ""
Tb_Owner.Value = ""
Tb_Address.Value = ""
Tb_City.Value = ""
Tb_State.Value = ""
Tb_Country.Value = ""
Tb_ZIP.Value = ""
Tb_MAKE.Value = ""
Tb_Model.Value = ""
Tb_COLOR.Value = ""
Tb_Trim.Value = ""
Tb_PaxSeats.Value = ""
Is there an easier way to do this?
Regards,
Mike