Wednesday, 4 December 2013

Windows Keyboard Shortcuts - General Shortcuts 2

[Alt] + [Enter]
Display properties for the selected item

[Alt] + [F4]
Exit the active program

[Alt] + [Space]
Open the shortcut menu for the active window

[Ctrl] + [F4]
Close the active document (in programs that allow you to have
multiple documents open simultaneously)

[Alt] + [Tab]
Switch between open programs or items

[Ctrl]+ [Alt] + [Tab]
Use the arrow keys to switch between open items (Vista only). Hit
[Enter] to select the program you want to switch to

[Ctrl] + Mouse scroll wheel
Change the size of icons on the desktop – (Vista only)

[Windows] + [Tab]
Cycle through programs on the taskbar by using Windows Flip 3D
(Vista only). In XP, cycle through programs using the taskbar
buttons and hit [Enter] to select a program

[Ctrl] + [Windows] + [Tab]
Use the arrow keys to cycle through programs on the taskbar by
using Windows Flip 3D (Vista only). Hit [Enter] to select the program
you want to switch to

[Alt] + [Esc]
Cycle through items in the order in which they were opened

Windows Keyboard Shortcuts - General Shortcuts 1

General Shortcuts
These are applicable to nearly all Windows programs.

[F1]
Display Help. When in Windows Explorer or viewing the desktop,
this shows you Windows Help. Otherwise, shows you the active
program’s documentation.

[Ctrl] + [C]

Copy the selected item or text

[Ctrl] + [X]
Cut the selected item or text

[Ctrl] + [V]
Paste the selected item or text

[Ctrl] + [Z]
Undo the last action

[Ctrl] + [Y]
Redo the last action

[Delete]
Delete the selected item and move it to the Recycle Bin

[[Shift]] + [Delete]
Delete the selected item without moving it to the Recycle Bin first

[F2]
Rename the selected item

[Ctrl] + [Right Arrow]
Move the cursor to the beginning of the next word

[Ctrl] + [Left Arrow]
Move the cursor to the beginning of the previous word

[Ctrl] + [Down Arrow]
Move the cursor to the beginning of the next paragraph

[Ctrl] + [Up Arrow]
Move the cursor to the beginning of the previous paragraph

[Ctrl] + [[Shift]] + an arrow key
Select a block of text

[[Shift]] with any arrow key
Select more than one item in a window or on the desktop, or select
text within a document

[Ctrl] with any arrow key + [Space]
Select multiple individual items in a window or on the desktop

[Ctrl] + [A]
Select all items in a document or window

[F3]
Search for a file or folder

Monday, 22 July 2013

How to remove blank spaces in dreamweaver?

If you are looking for a software to delete blank lines in between the codes, Adobe 's Dreamweaver is best.
Using regular expression in find and replace , we can delete the empty lines in between the codes.

Here are the steps
-------------------------
1) Open the file
2) Click CTRL + F
3) Select "Current document" in "Find in" (You can also select the folder if you have multiple files)
4) Search in "Source code"
5) Tick "Use regular expression"
6) Type "[\r\n]{2,}" (without quotes) in "Find"
7) Type "\n" (without quotes) in "Replace"
8) Press "Replace All"

That's all. If any body knows other methods to remove empty lines in  between codes, kindly share it with me.