Skip to main content

Moving, Sizing, and Organizing Windows . windows98


Moving, Sizing, and Organizing Windows
Once you are familiar with the parts of a window, it is easy to use several windows at once so that you can accomplish more than one thing at a time. You can search the Internet and import text or pictures into a Word document; or, you can figure grades with an Excel spreadsheet, and write memos in Word Pad all while you are reading your e-mail.
Windows allows you to easily enlarge, hide or shrink a window using the minimize, maximize and restore buttons.
The Minimize button is among the three buttons at the right end of the title bar. It's the box that has a small dash (or minus sign). The Minimize button lets you remove a window from the desktop while leaving the application running.
The button in the middle is the Maximize button. It's a box with a picture of a window inside it. Use the maximize button to enlarge a window.
After a window is maximized, the button changes to the Restore button. It looks like a box with a picture of two windows. If you click on the Restore button, the maximized window shrinks to its previous size (the size it was before you maximized it).
To maximize a window:
• Click Start.
• Choose Programs--> Accessories Notepad.
• Click the Maximize button.
OR
• Click the Control Menu button on the left end of the title bar.
• Choose Maximize.
OR
Double-click on the title bar
Maximizing not allowed
Some windows cannot be maximized. They always appear as a small window. If a window cannot be maximized, the maximize button appears light gray or dim in color.
To see a window that cannot be maximized:
• Click Start.
• Choose ProgramsactionAccessoriesaction Calculator.
• Notice that the Calculator window cannot be maximized.
Scrolling
The scroll bar appears at the right side or the bottom of a window when all the information in that window can't be seen at the same time. You can use the scroll bar to see the hidden information.
The scroll bar of a window allows you to move easily through a document. It comes in handy, especially if you're viewing a long document.
Window with scroll bars labeled
Important Point Using the scroll bar to move through a window is called scrolling.
Moving a Window
Sometimes a window may be in front of an item you want to click on or view on your desktop.
Use the Title Bar to move a window around on the desktop. Click on the title bar, and while holding down the mouse button, drag the window to a new location on the desktop. This is helpful when you are using more than one program at a time and need to see them both simultaneously, such as when you are editing a picture in Paint and then want to import the picture into a Word document.
To move a window:
• Point the mouse pointer over the title bar at the top of the window and hold down the mouse left button. (Remember, you cannot move a window that is maximized.)
• Drag the window to the place where you want it and release the mouse button.
Tiling and Cascading Windows
When you right-click on the taskbar, a menu appears. This handy menu contains commands for cascading and tiling windows, and for minimizing all open windows. To try out these features, open a few accessory programs such as Word Pad, the calculator, and Paint, and then right-click an open space on the taskbar and choose Cascade Windows or Tile Windows Horizontally.
Cascading windows are layered on top of each other. Tiled windows are next to each other. Windows can be tiled horizontally or vertically. If windows are tiled horizontally, they appear one above another. If windows are tiled vertically, they appear side by side.
Below is an example of vertically tiled windows:

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