answersLogoWhite

0


Best Answer

Start>Control Panel>Performance and Maintenance>Administrative tools>

User Avatar

Wiki User

15y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

11y ago

bios

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What option would you then select to examine system components you might want to modify?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What option would you select to examine system components you might want to modify?

bios


When clicking the start button on your desktop screen what option would you then select to examine system components you might want to modify?

control panel


What would you select to examine system components you might want to modify?

bios


How do you change the layout of elements on Blogger?

Click on "Layout" menu option at left. Now click on "Edit" link for the element which layout you want to modify. select appropriate for placement.


How do you make a button in adobe flash professional?

Step 1: Draw or import an object for your button on the stage. Step 2: Select the entire object with your black arrow. Step 3: Select Modify > Convert to symbol... and choose the button option.


You can select the cable length in the option box.?

You can select the cable length in the option box.


Preferred HTML tag for drop down list?

That would be the <select> tag. Example of usage: <select> <option>Option 1 in drop-down list</option> <option selected="selected">Option 2 (selected by default because of the "selected" attribute)</option> <option disabled="disabled">Option 3 (disabled because of the "disabled" attribute)</option> </select>


How do you make frames in Adobe Photoshop?

Ctr+A Select > Modify > boarder


What is the correct HTML for making a drop-down list?

<select> <option value="Volvo">Volvo</option> <option value="Saab">Saab</option> <option value="mercedes">Mercedes</option> <option value="Audi">Audi</option> </select>


Can you give an example of a sentence using the word select?

I wanted to select the correct option.


What is difference between name and value in an HTML Form?

'Name' can be a field and 'value' can defined to the that particular field. Example: <select name="Car List"> <option value="volvo">Volvo</option> <option value="saab">Saab</option> <option value="mercedes">Mercedes</option> <option value="audi">Audi</option> </select>


How do you enable the select box after previous select box value selected?

The code: <html> <head> <script type="text/javascript" language="javascript"> function disableBox() { document.getElementById("select2").disabled = true; } function enableBox() { if(document.getElementById("select1").value =="USA") { document.getElementById("select2").disabled = false; } else { document.getElementById("select2").disabled = true; } } </script> </head> <body onload="disableBox()"> <form> <select name="country" id="select1" onchange="enableBox()"> <option>Default</option> <option value="USA">USA</option> </select><br /> <select name="state" id="select2"> <option value="New Jersey">New Jersey</option> <option value="Texas">Texas</option> <option value="New York">New York</option> </select> </form> </body> </html>