Skip to main content

Dialog Box Controls in windows98

Dialog Box Controls
 
Dialog boxes pop up on your screen when Windows or a Windows based program needs information, requires you to confirm an action (such as deleting), or has an alert or other information. Dialog boxes look a bit like windows, but don’t have all the features of windows. For example, they have title bars, but not toolbars. You can move them but not resize them. You can close them but not minimize them. Most dialog boxes are intuitive, usually asking for a simple YesNo, or OK. Some are more complicated, especially those used for changing settings.
 
Several Windows 98 dialog boxes you use to change system settings are subdivided into tabbed categories, like a "real" file folder or card file. This allows you to make multiple changes from a centralized location on your computer. Each tab has a heading which categorizes the information on that tab. Click on the tab to change from one to another.
 
The following illustration shows the Display Properties dialog box:
 
 
Windows 98 Display Properties Dialog box
 
Dialog boxes feature button, boxes, tabs and sliders to help you control how your computer looks and works. You need to become familiar with the various dialog box controls.
 
module arrow Command button
 
OK button
Tells the computer to carry out an action. Click on this button to execute a command.
 
module arrowOption button
 
 
Appears when you have a list of choices. This button looks like a circle. Click inside the circle to select only one option.
 
module arrowCheck boxes
 
 
Appear when a list of options is available. Click inside the boxes to select one or more options.
 
module arrowText box
 
Text box example
 
Provides space for you to type information. For example, when you name a file, you type in a text box.
 
module arrowSpin box
 
 
Sets a value, such as the number of copies to print. A spin box is a text box next to an up arrow and a down arrow. The text box contains a number. Click the up arrow or the down arrow to increase or decrease the number.
 
module arrowList box
 
List box example
 
A white space that contains a list of options. Click on an option to select it.
 
module arrowDrop-down list box
 
Drop down list box
 
Shows only one option at a time (the option that is selected), and there is an arrow at the end of the box. Click the arrow to see the whole list of options.
 
module arrowTabs
 
 
Resemble file folder tabs. When you click on a tab, a page of information appears.
 
module arrowSlider
 
 
Looks like a sliding volume control on a radio. It lets you set a value within a range of values, such as from slow to fast. To move a slider, place the mouse pointer on the slider, hold down the left mouse button and drag it.
 

Comments

Popular posts from this blog

Voice Support Executive Jobs in Thane – 12th pass

Amazon currently hiring Marathi Voice Support Executive Job in Thane Maharashtra for 12th pass freshers who had fluency in Marathi or Hindi or English language can apply online with ease. Post: Voice Support Executive – Freshers Department: Customer Support Work location: Thane Maharashtra (candidate may get nearby branch of Mumbai ) Education: 12th pass and above Language Preference : Marathi / HI_IN / EN_IN Salary: 12,000 to 17,000/- per months Candidate who cleared 12th exam and looking for tele-calling job in Thane or back office jobs in Thane area for freshers, can apply jobs at amazon over here. Basic need to enrol for Amazon jobs in Thane: • Firstly, good in talk which is communication skills should be excellent in any of Marathi, or English. • Must be able to handle telephonic software support, should have computer knowledge. • Candidate should be able to handle the voice calls from local customers of Maharashtra state in Marathi or English Language. • Problem-solving ...

Booting! What is this?

Booting! What is this? What is Booting? Booting  (booting up) is a bootstrapping process that starts operating systems when the user turns on a computer system. A boot sequence is the set of operations the computer performs when it is switched on that loads an operating system.   When you turn on the power to a computer, the first program that runs is usually a set of instructions kept in the computer's read-only memory ( ROM ). This code examines the system hardware to make sure everything is functioning properly. This power-on self test ( POST ) checks the  CPU , memory, and basic input-output systems ( BIOS ) for errors and stores the result in a special memory location. Once the  POST  has successfully completed, the software loaded in  ROM  (sometimes called the  BIOS  or firmware) will begin to activate the computer's disk drives. In most modern computers, when the computer activates the hard disk drive, it finds the first piec...

how to use Java code from Python using JPype:

  Sure, here are the complete steps to use Java code from Python using JPype: Install JPype: You can install JPype using pip by running the following command in your command prompt or terminal: Copy code pip install jpype1 Set up your Java environment: To use JPype, you'll need to have a Java Development Kit (JDK) installed on your system. You can download the latest JDK from the Oracle website. Write your Java code: Write your Java code in a text editor or an Integrated Development Environment (IDE) such as Eclipse, IntelliJ, or NetBeans. For example, you could write a simple Java class that prints "Hello, World!" to the console: java Copy code public class HelloWorld { public static void main (String[] args) { System.out.println( "Hello, World!" ); } } Compile your Java code: Compile your Java code using the javac command. Open your command prompt or terminal and navigate to the directory where your HelloWorld.java file is ...