Skip to main content

Using Find in windows 98

Getting Started
Using Find
If you need a file or program located on your computer or network, but you cannot remember its name or location, use the Find File command. Click the Start button, point to Find, and then click Files or Folders. When you choose this command from the Start menu, the Find dialog box opens.
From this dialog box, you can find the file or program based on several types of search criteria, such as the file format (type), a partial file name, or words in a file. The more specific you can make the search, the faster the search results are displayed. For example, if you know the document you are looking for is a Microsoft Word document, it contains the word "vitae," and it is on your computer, you could choose "*.doc" from the dropdown list for the Named field, type "vitae" in the Containing text field, and select your hard drive in the Look in field before pressing Find Now to start the search. When the search is completed, a list of files and folders matching your criteria appears in the field at the bottom of the Find dialog box:
Open the files or folders in this field by clicking on the file or folder (double-click if you are using Classic style). You can also right-click the file or folder for more options, such as printing it (for files), moving or copying it, or deleting it.
The following options are also available from the Find command on the Start menu:
•  Computer
search for another computer on the network by name.
•  On the Internet
launches the Web browser so that you can search the Internet. For more information about finding information on the Internet, see the section “Getting Connected.”
•  Using Microsoft Outlook™
opens the advanced Find dialog box for the Microsoft Outlook messaging and collaboration client. If you use Microsoft Outlook to schedule tasks, meetings, appointments, and other items, you can search for an Outlook item from this box.
•  People
opens your personal address book if available.

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