Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Is it not possible to use controls in a protected sheet. My comboboxe
and checkboxes are not working in a protected sheet. How do I make the work. - Manges -- Message posted from http://www.ExcelForum.com |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Do you have linked cells for each of your controls on that same worksheet?
If yes, are those link cells locked or unlocked? (Either unlock them or move them to a new sheet (hidden, perhaps???).) "mangesh_yadav <" wrote: Is it not possible to use controls in a protected sheet. My comboboxes and checkboxes are not working in a protected sheet. How do I make them work. - Mangesh --- Message posted from http://www.ExcelForum.com/ -- Dave Peterson |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I have unlocked the cells linked to these controls. And they are on the
same sheet. Mangesh --- Message posted from http://www.ExcelForum.com/ |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() "mangesh_yadav " wrote in message ... I have unlocked the cells linked to these controls. And they are on the same sheet. You're not in Select Objects mode, are you? Afraid that's all I can think of.... Iain King |
#5
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
What "select objects" mode...?
The problem is: currently the application even does it is supposed t do when I click a checkbox (for instance). But when I click on th checkbox, I get the message saying that the sheet is protected. And i fails to change the status of the linked cell even though the cell i added to the range of AllowEdit Ranges. - Manges -- Message posted from http://www.ExcelForum.com |
#6
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() What "select objects" mode...? It'sa mode used for editting components on a sheet. It's not what's wrong here, as you've said. The problem is: currently the application even does it is supposed to do when I click a checkbox (for instance). But when I click on the checkbox, I get the message saying that the sheet is protected. And it fails to change the status of the linked cell even though the cell is added to the range of AllowEdit Ranges. Does the checkbox change state (i.e., gain or lose the tick)? It sounds like the checkbox is locked with the sheet protected. So, just to be clear - is the sheet protected? If so, what specific protections are applied? Generally, you can (and should) Lock controls so that the user cannot edit their properties/ text. users can still use locked controls (usually). Is there an event triggering on the checkbox being clicked? Such an event might be trying to write to a protected cell... Can you post any code which is attached to the checkbox? Iain King |
#7
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() |
#8
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
"mangesh_yadav " wrote in
message ... Is it not possible to use controls in a protected sheet. My comboboxes and checkboxes are not working in a protected sheet. How do I make them work. Try adding this to the Workbook.Open event: With Sheets("Sheet1") 'or whatever your sheet is called .EnableAutoFilter = True 'remove this line if you are not using an autofilter .Protect DrawingObjects:=True, _ contents:=True, Scenarios:=True, UserInterfaceOnly:=True End With Please post back if this works. Iain King |
#9
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Infact the moment I click on one of these controls, I get a messag
saying that the worksheet is protected (even before the macro linked t the control is executed). Manges -- Message posted from http://www.ExcelForum.com |
#10
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi Iain,
Thanks for the reply. I tried your solution, but even that does not work. - Manges -- Message posted from http://www.ExcelForum.com |
#11
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Take a look at the linked cell--not the control itself.
Select one of the linked cells. Format|cells|protection tab Uncheck the Locked option. "mangesh_yadav <" wrote: Hi Iain, Thanks for the reply. I tried your solution, but even that does not work. - Mangesh --- Message posted from http://www.ExcelForum.com/ -- Dave Peterson |
#12
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I have unlocked the cells linked to these controls. And they are on the
same sheet. Mangesh but I agree, he should take another look. -- Regards, Tom Ogilvy "Dave Peterson" wrote in message ... Take a look at the linked cell--not the control itself. Select one of the linked cells. Format|cells|protection tab Uncheck the Locked option. "mangesh_yadav <" wrote: Hi Iain, Thanks for the reply. I tried your solution, but even that does not work. - Mangesh --- Message posted from http://www.ExcelForum.com/ -- Dave Peterson |
#13
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() Hi, Before you add sheet protection, format the cells using the 'Protection' tab and unlock the cells. Regards, GS -----Original Message----- Is it not possible to use controls in a protected sheet. My comboboxes and checkboxes are not working in a protected sheet. How do I make them work. - Mangesh --- Message posted from http://www.ExcelForum.com/ . |
#14
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Solution (or you can say avoiding the problem):
I might have learned the hard way but maybe thats how it works. unlinked the cells from the controls and re-linked them through th code for the control (i.e. on_Click or on_Change). This way it does no give any error. Only when the control has a cell linked directly throug its properties, it gives the problem. But without changing anything a all, I just unlinked it and wrote it down in its code and it work perfectly fine. Any comments on this. Anyway thanks for all the help. Manges -- Message posted from http://www.ExcelForum.com |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
how to activate controls in protected sheet | Excel Worksheet Functions | |||
Need more than 1208 controls per sheet | Excel Discussion (Misc queries) | |||
Unable to use controls when sheet is protected | Excel Programming | |||
Unable to use controls when sheet is protected | Excel Programming | |||
Counting Controls in a sheet | Excel Programming |