Combo Box & Radio Button reducing in size

eoinymc

Board Regular
Joined
Jan 29, 2009
Messages
203
Hi,

I have an issue with a combo box and radio button.

Anytime I click on either of them, they reduce in size.

It's as if it is reducing by the same ratio every time until you can't click on it anymore.

Has anyone ever seen this happening before?

I'd post a picture, but I'm don't have rights to attach anything.

Any help at all would be greatly appreciated.

Thanks,

Eoin
 

Excel Facts

Create a chart in one keystroke
Select the data and press Alt+F1 to insert a default chart. You can change the default chart to any chart type
Yep I was having this problem, but only when I was working with the file from home. Maybe it's a VPN issue?

Anyway, my solution was probably not the most efficient, but I put the controls on a UserForm and moved on!

Steve
 
Upvote 0
Yes, I've seen this before - these are ActiveX controls on a sheet - yes?
Use form controls instead, though they are less flexible. There is a way to resize/reposition activeX controls, for example with its click-event:
Code:
Private Sub OptionButton1_Click()
With OptionButton1
    .Top = 16
    .Left = 476
    .Height = 25
    .Width = 90
End With
'other code here.
End Sub
 
Upvote 0
Thanks guys..

I can't use form controls instead as what I am doing won't work with them.

It is only happening on 1 colleagues PC and it is only happening after I resized her screen resolution from 1024x768 to 1680x1050...when we changed the screen size to 1024x768, it worked fine.

So, it seems to me that this is something related to the graphic card? Could this be the case?

Thanks again for your help.

E
 
Upvote 0

Forum statistics

Threads
1,215,473
Messages
6,125,022
Members
449,203
Latest member
tungnmqn90

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