answersLogoWhite

0


Best Answer

Enable=true : It will just enable the control. You can see the control and use it. Enable=False : You can see the control but Its kind of view only. The properties attached to the control won't work(for example mouse over , click etc etc). On the other hand visibility will either hide or show the control depending on the value you set.Visibility= True will show you the control and you can see and use it. When you set the value as false, it will stop the control from rendering in your form. You won't see the control. If its a webpage and if you can view the source code ,you won't find the contents of the control at all.

User Avatar

Wiki User

12y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is the Difference between enabled and visible property of a menu control?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is difference between enable and visible property in visual basic?

Visible means that the property can be used, but is not visible in the graphical user interface. But, if the user were to click a control that edit the objects properties, the object would change even if it isn't visible. Enabled/Disable means that for instance if the object is Disabled, it's still visible but the user cannot interact with it. This means, that if code is executed for the control that is disabled, nothing will change to that control.


What is the difference between IT and BPO?

IT is Information Technology and BPO is Business Process Outsourcing. BPOs are also categorized by ITES (Information Technology Enabled Services)


Why are there walking signs on Mars on Google Earth?

If there are walking signs enabled then you probably have a NetworkLink in your saved places enabled. The NetworkLinks doesn't know the difference between Earth mode or Mars mode so best to turn off your saved places.


How do you get on the show parental control?

Parental control can be enabled or disabled in the User Accounts. The user accounts are present in the Control Panel of the windows.


What is Difference between enabled and read only?

Enabled is when you can edit a document, delete it and change it's settings and read only is where you can't edit it you may only view it and if you try to save an edited version it makes you save it as a different file name then the one you were editing.


What is the difference between culture and civilization?

simpler cultures were small groups that enabled them to survive, a civilization was what came later, it was more complex and it was formed for a larger number of human beings :)


What is the connection between cities and civilization?

Settlement on productive land enabled a surplus of food which enabled the development of civilisation .


Why won't passenger door on passenger side rear open?

Either control switch is enabled on driver's door...or child switch on the insideof door (where it latches) is enabled


What enabled England to gain control of the North Atlantic sea-lanes?

by defeating the spanish armada


Enabled England to gain control of the North Atlantic sea lanes?

The defeat of the Spanish Armada.


What remotes are compatible with a DTV box?

A digitally enabled remote control is compatible with a DTV box.


How do you switch control from one window to another in c-sharp?

You can switch between windows (forms) by passing them reference of each other to control their properties from one another. Here's an example: - Form2 obj2 = new Form2(this); this.switch1.Enabled = false; obj2.Show();