option buttons: black dot not appearing

greegan

Well-known Member
Joined
Nov 18, 2009
Messages
643
Office Version
  1. 365
Platform
  1. Windows
What have i done wrong that the ob's dot is not showing when selected in the userform?
 

Excel Facts

Which came first: VisiCalc or Lotus 1-2-3?
Dan Bricklin and Bob Frankston debuted VisiCalc in 1979 as a Visible Calculator. Lotus 1-2-3 debuted in the early 1980's, from Mitch Kapor.
Thank you for your reply. I've checked and all three are false
 
Upvote 0
Next thing would be if they in a container, such as a frame, that might be disabled.
When you click one, do you get a selector frame around the text?
 
Upvote 0
I've grouped them as VDSoptions. When I select one I get the border of dots around it. I think that's what you're asking.
I should mention... the macro linked to the button works. Its only that the black dot isn't showing.
 
Last edited:
Upvote 0
The display may not be updating; check out the repaint method.
Thank you all for the replies and suggestions.
This one I'm not sure of. Where do I find the repaint method?
 
Upvote 0
It is a userform. I've searched on the forum for the repaint method and I am beginning to understand this now. I still haven't found a solution. This is what I have when the obVerification is called up...
' ** Opening Option Windows
Sub Center_obVerification() ' **Centers userform on primary monitor
Application.ScreenUpdating = True'added after forum suggestions
With obVerification
.StartUpPosition = 0
.Left = Application.Left + (0.5 * Application.Width) - (0.5 * .Width)
.Top = Application.Top + (0.5 * Application.Height) - (0.5 * .Height)
.Show vbModeless
obVerification.Repaint 'added after forum suggestions
DoEvents 'added after forum suggestions
End With

with and without the 'added after forum suggestions, nothing seems to work yet. I'm still reading though. But the site's making it difficult kicking me out every five minutes of non activity :(
 
Upvote 0
THANK YOU!!
I added the me.repaint in each of the option button events(?) and it worked.
Awesome help.
Thank you
 
Upvote 0

Forum statistics

Threads
1,214,647
Messages
6,120,722
Members
448,987
Latest member
marion_davis

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top