Skip to main content

Working with menus windows

Working with menus
Menus provide a way for you to send commands to the computer (tell the computer what you want the computer to do). When you open a window, menu options are listed from left to right just below the title bar on the menu bar. When you Click a menu item, a drop-down menu appears. Select the command you want to execute from the drop-down menu. An ellipse after a drop-down menu item signifies that there are additional options; if you select that option, a dialog box will appear. A menu is a list of commands or instructions that tell your computer to perform an action (such as opening a program or saving a document). The main menu associated with Windows 98 is the Start menu.
Most software programs will have their own menus that you will become familiar with as you use the program. You will usually find these menus at the top of the program window in an area called the menu bar. In Windows 98 you will use menus, cascading menus, submenus, and shortcut menus. The following illustrations show some of the kinds of menus and their parts.
The following are descriptions of the commands on the default Start menu:
• Run
opens the Run dialog box. You can type in the name of a program, folder, document, or Internet resource and Windows 98 will open it for you. There is also a Browse button to help you find what you want to open.
• Settings
opens a cascading menu with commands to open the Control Panel folder, Printers folder, Taskbar Properties dialog box, Folder Options dialog box, and Active Desktop commands.
• Document
quick access to the last 15 files that you have opened, as well as a shortcut to the My Documents folder.
• Favorites
opens a cascading menu, which helps you quickly access your Web page subscriptions, Active Channel subscriptions, and My Documents folder.
• Programs
opens the Programs menu which contains shortcuts to the software programs on your computer or that are available on your computer network including Windows Explorer and the Windows 98 Accessories.
There are some other symbols, called indicators, that you will sometimes find on menus. The following is an illustration of the View menu in Microsoft Word 97 showing the kinds of indicators you will find on program menus.
In Windows 98 and software programs that run on the Windows operating system, there are also shortcut menus which you open by right-clicking an object or area on the desktop or in a program window. The commands available on a shortcut menu depend on the location of the pointer when it is clicked. For example, the Windows 98 desktop shortcut menu allows you to create shortcuts and arrange shortcut icons as well as customize your Active Desktop.

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 ...