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
 
In the AfterUpdate event of PartA put the following code:
Me.PartB = 0

HTH

Byron
 
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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top