Problem - Radio Buttons

  • Thread starter Thread starter Bill
  • Start date Start date
B

Bill

Hi,

There are two different frames (Part A and Part B) on the form. I'm try to
figure it out how to reset Radio Button (Part B area) without check when
clicking one of three reports on the radio button (Part A area).

Part A has three different reports and I click one of the reports and
realize that Part B area still has the check mark.

Is there a way to put "REFRESH" after clicking another report so that I see
Part B that has no CHECK.

Right now, I click one of three reports and Part B still has a check. I
just want to clear check after selecting a report.

Your help would be much appreciated.

Thanks
 
Use the AfterUpdate event of the Part A frame to set the value of the Part B
frame to Null:

Private Sub PartAFrame_AfterUpdate()
Me.PartBFrame.Value = Null
End If
 
Hi Bill,

I am just checking on your progress regarding the information that was sent
you! Does community members suggestion is sufficent for you?

If you encounter any difficulty, please do not hesitate to let me know.
Please post here and let me know the status of your issue. Without your
further information, it's very hard for me to continue with the
troubleshooting. Looking forward to hearing from you soon.



Sincerely yours,

Mingqing Cheng
Microsoft Online Support
 
Back
Top