Thread
:
How can I reset an Excel form that has radio buttons.
View Single Post
#
2
Posted to microsoft.public.excel.programming
Tom Ogilvy
external usenet poster
Posts: 6,953
How can I reset an Excel form that has radio buttons.
Dim ctrl as Control
for each ctrl in Userform1.Controls
if typeof ctrl is MSforms.OptionButton then
ctrl.Value = False
end if
Next
--
Regards,
Tom Ogilvy
"JaxPM" wrote:
using version 2003.
Reply With Quote
Tom Ogilvy
View Public Profile
Find all posts by Tom Ogilvy