HOW DO YOU OPEN THE clipboard ON THE TASK PANE?
The simplest way is to press and hold the Ctrl key and then press the C key twice.
How did Bill Gates make Microsoft Windows?
With hiring a project manager and a team of programmers. He did not create Microsoft Office.
The team of programmers used high-level programming languages such as C++, VBA Scripts, Visual Basic, and software API's found in the Operating System.
Bill Gates is not really a good programmer, as he has said himself. He is a good business man who is technical enough to make good programmers work in his favor.
Windows explorer and internet explorer are the same thing?
In Windows 95, Windows XP (with Internet Explorer 7 or later installed), and later, they are not the same thing. In Windows 98, 2000, Me, and XP (with Internet Explorer 6), Internet Explorer is integrated with Windows Explorer.
How do you make qcp files into mp3 files using audacity?
The QCP file format is used by many cellular telephone manufacturers to provide ring tones and record voice. However, this Qualcom PureVoice (specifically a LG or Motorola recorded QCP file or QCP with TIA.
IS-127 Enhanced Variable Rate Codec, Speech Service Option 3 ) is not compatible with most media player and not supported by Windows and Mac. It will end in fail if you try to play the recorded QCP file with Windows Media Player, iTunes, QuickTime on Windows or Mac computer.
In order to successfully play QCP files anywhere, converting QCP to MP3/WAV/WMA will be a recommended solution.
The following is a detailed guide on how to convert QCP to MP3 at http://audioconverters.blogspot.com/2012/03/how-to-convert-qcp-to-mp3-wav-wma-on.html.
, it also applies to convert QCP to MP3, WAV, WMA, M4A, AAC, AC3, OGG, AIFF, ALAC, FLAC and etc.
What are Step by step instructions for moving a file from one folder to another?
select the file you want to move, hold control (ctrl) press c, release control
select the place that you want to move it to, hold control (ctrl) press v, release control
The standard font size for writing is typically a size 12. Most people who write on Microsoft Word will use this size with a traditional font such as Times New Roman.
If an administrator is concerned about security on a system which file system is appropriate?
ntfs is probably the best
What are some advantages of using a PC instead of a MAC?
PC's are much more compatible with most types of software and hardware, while software and hardware must be specifically made to be compatible with a Mac.
PC's are also less expensive and have a better processor speed, RAM, and hard drive capacity.
PC's are compatible with the best software on the market. Even if there is a Mac version, it is usually a watered-down version of the PC version of the software.
How do i get my mycrosoft office back i deleted it?
You will need to restore from backups or reinstall the software.
What is at the top of each window in computer?
Typically (at least in Windows OS), that will at least consist of the Title Bar and (in most cases) the icons to Minimize, Maximize, Restore and/or Close the window.
What do most people use for editing youtube videos?
Most people use Windows Movie Maker to edit their videos. This is a free application that comes preinstalled with all recent versions of windows. If you have a mac, you could try using iMovie.
How many bytes equals 768 kilo bytes?
each kilobyte is 1024 bytes. so: 1024 kilobytes * 100 = 102,400 bytes
What do you need if you want to to decrypt messages and files from a trusted sender?
You would have to go through and figure out the encryption code. You can then figure out what is being said. Sometimes you just need the password that they send.
How do you view computer screenshots?
Use the button "Pr Scrn" on keyboard, without minimizing what u wanna capture then press it. U should goto MS Paint or any other graphic editors and Press CTRL+V , save the image…
U could also try PCHand Screen Capture. I'm using it…It has a free trial version and easy to use, even for a novice…Try it, hope it could help u!
http://www.screen-capture-record.com/
How do you install a new font?
Just copy your new file in C:\WINDOWS\Fonts if you having windows XP
Also, access the control panel and click on the Fonts installer.
Follow the prompts. ;P
always wanted 2 say that
To use the archive attribute (A), back up files telling the archiving application (WinZip, etc.) to clear the archive attribute of the files it stores copies of. Whenever one of those files is modified in the future, or whenever a new file is created, its archive attribute is set. Therefore, on subsequent backups, you can have the application back up only files that have the archive attribute set (and clear the archive attribute while doing so). That way you don't waste time and drive space backing up files that haven't changed since the last time they were backed up.
What are examples of characters used in passwords?
Individual letters, numbers or special symbols such as @#$%^& found on a computer keyboard.
Can you do green screen in windows live movie maker 2011?
No use adobe premiere or better yet adobe after effects
What is file handling utilities?
File specifications provide the system with the needed information to uniquely identify a file or device. To avoid problems refrain from using characters that have other meanings. It is best to use only letters, numbers, and the period.
A full pathname consists of: /users/users3/grad/homedir
where:
/ (leading)=Root of the file system when it is the first character in the path name,users=System directory one level below root in the hierarchy/ (subsequent)=Slash that delimits the directory namesusers3, grad=Further subdirectories below /usershomedir=User's home directory.
The use of wildcards makes it seldom necessary to explicitly use the complete file specification. The question mark (?) matches any single character. The asterisk (*) matches any number of characters. The [...] means to match any of the characters inside the brackets. Numbers (e.g. [5-9]) or letters (e.g. [A-z]) can be used.
Examples:1.% lpr chap[1-3ad]*
Print all files that start with chap1, chap2, chap3, chapa, or chapd2.% cat ?
Type all files that consist of a one character name
If you wish to suppress the special meanings of *, ?, etc., enclose the entire argument in single quotes (e.g. cat '?').
File Manipulation Commands
1.Typing the contents of files can be accomplished using:
% cat filename
This displays the file on standard output, and
% cat file1 file2 > file3
concatenates the first two files and places the result on the third, overwriting the current contents of file3.2.The more command can also be used for typing out files, one screenful of text at a time. Hit space to see the next page or return to see the next line. Q or q may be used to exit from more.3.Copying files may be done by typing :
% cp fromfile tofile
The cp command does not copy a file onto itself. You may also copy one or more files onto a directory by:
% cp f1 f2 ... directory
cp -i will prompt the user with the name of the file whenever the copy will cause an old file to be overwritten.
If cp -r is used and any of the source files are directories, cp copies each subtree rooted at that name; in this case the destination must be a directory.4.The move file command (which essentially renames a file) is mv.
% mv good bad
renames the file good as bad. You can also use this command to move files or directories to a different place in the directory tree.5.Deleting files may be accomplished by rm command. To remove file foo, type:
% rm foo
Once deleted the file is gone forever (if there are no links to the file). To remove a file, you must have write permission in its directory, but you do not need read or write permission on the file itself. The -i option withrm command is useful since it allows the interactive removal of a file.6.To get a directory listing of files in the default directory, type the ls command. See the online manual for a complete list of its options. For example, the -a option lists all files in the directory, including those with names beginning with (.),which otherwise are not listed; -R option lists subdirectories recursively; -l lists the mode, number of links, owner, size in bytes and time of last modification for each file ; etc..
( the mode field needs a brief explanation - it represents the protection mode of the file - it consists of 11 characters : the first character indicates the type of entry :
Note: The rm, cp, mv commands can cause files to be deleted. There is an optional switch -i which when used with any of these commands will query you before actually carrying out the operation. You can force the rm, cp, mv commands to query you by placing the following commands in your .login or .cshrc or .aliases file :
% alias rm rm -i
% alias mv mv -i
% alias cp cp -i
7.The command grep reg-exp file(s) searches the files for a pattern specified by a limited regular expression. There are numerous optional switches such as -ifor ignoring difference in upper and lower case; -vfor printing the unmatched lines; etc.. It is safe to enclose the entire expression argument in single quotes to avoid any ambiguity with meaningful shell commands such as $,*,[,^,(,),|,\ . The rules for the expression are listed in the man page for grep. Example:
% grep -i 'Find this text' *.tex
8.To determine the existence of a particular file anywhere in the file hierarchy starting from a specified path list you may use the find command.
Example:
To find and list all files below the current directory, whose names end in .dat:
% find . -name '*.dat' -print
To find and list all files ending in .dat and containing the word homework :
% find . -name '*.dat' -exec fgrep -i homework
9.Files can be compared by the diff or the cmp commands. The latter allows comparison of binary files and directories. Usage:
% cmp file1 file2
compares file1 and file2. If they differ it announces the byte and line number at which the difference occurred. For text files it is better to use diff which lists any differences.
How do you change PowerPoint background?
First of all this only works for Microsoft 2007
First you open Microsoft power point
Then you go to the tabs up in the page
After you click on design
And you chose from the options, which slide you want
PDF, or Portable Document Format, is a file format from Adobe that allows you to create a file or document in one program, such as Word or almost any program, and save the output in PDF format so that anyone with the free PDF Reader can view the document on any computer. The benefit is that you don't need to have a copy of the original source program (e.g., Word) in order to view the file.
Which bar displays the name of the current document?
The title will be in the bar at the top of the window or if you hover your mouse over the document in your task bar it will show the name of your document.
Where is the Windows control panel?
The Windows control panel is located in the Start Menu and in settings. A person can also get to the Windows control panel by going into My Computer and scrolling through there.
How can i get my data off my flash drive?
You should connect your flash drive to PC and then you can try to recover your file with special software.
Some use unique modern algorithms to recover files that other software either recovers incorrectly or is unable to detect.
How many bytes in 32 megabytes?
32 Mb = 32,768Kb (multiply by 1024) 32 Mb = Not a whole lot of space nowadays 32 Mb = Fits about 8 songs on an MP3 player, less than one album for sure