How to trace the route of your website
You can use the following command with DOS mode:
tracert yourdomain
For example:
tracert www.wenjunw.com
Useful Misc. Shortcut Keys
Speed up your computer activities. This article will list you some very useful shortcuy keys.
Windows General:
• Help
[F1] For current program open.
• Windows Help
[Win]+[F1] Windows Help
• Copy
[Ctrl]+[C] To mark an area to copy: Place the cursor at beginning of area to copy. Hold the left mouse button
down and drag the cursor across area to copy. Release the left mouse button when area is highlighted. Then copy
to the clipboard by holding the [Ctrl] key down and touching the letter [C]. Another method is to place the cursor
at the beginning of area to copy. Hold the [Shift] key down and use the [Right Arrow] key to highlight area to
copy. Release both keys. Then [Ctrl]+[C] to copy to the clipboard.
• Cut
[Ctrl]+[X] Will Cut highlighted area and place it on the clipboard. Handy when moving data.
• Paste
[Ctrl]+[V] Pastes clipboard data to the right of your cursor.
• Go to Program
[Alt]+[Tab] Will cycle between Programs that are currently open in Windows.
Hold the [Alt] key down and touch the [Tab] key to change applications.
• Close Current Program
[Alt + F4] Closes current open application in Windows.
• Minimize all windows
[Win]+[D] Minimize all Windows to show Desktop.
• Select All [Ctrl]+[A] Select All text or items in the current window.
• Display Windows Explorer [Win]+[E] (Same as File Manager in older versions of Windows) Display Windows
Explorer (Without expanded directories) Much better than a Right- Click on [Start] and selecting Explore.
• Display Find Files
[Win]+[F] Display Find Files. Faster than [Start] [Find] [Files or Folders]
• File Navigation
[Ctrl]+[Home] In most Windows applications will take you to the Beginning of a file. [Ctrl]+[End] Will take you
to the End of a file.
• Delete Files
[Shift]+[Del] In Windows Explorer and Outlook deletes Files, bypassing the Recycle Bin.
• Previous Control
[Shift]+[Tab] Moves to Previous control in the dialog box. [Tab] alone goes forward.
• File Association
[Shift]+[Right-Click] on a file in Explorer to open with a specific program.
• Refresh [F5] Use to refresh your Explorer file system, browser and html editors.
• Create Shortcut
Pressing [Shift] while holding down the [CTRL] key and dragging to the desktop or to a folder creates an instant
Shortcut. (You can do the same thing by clicking and holding the right mouse button, letting go on the desktop,
and choosing "create shortcuts here.")
• Display Start Menu
[Win] Press the Windows Key to display the Start Menu
• Run/Install Program
[Win]+[R] Same as [Start] –> [Run]
• Hold the [Shift] key down when inserting a CD to avoid Auto-Run to view CD contents.
For Visual Studio .NET:
Mark down a line: Ctrl + K twice
Find the marked line: Ctrl + K and Ctrl + N
I found a website provides a fundmantal shortcut key description:
http://www.seoconsultants.com/windows/tips/keyboard-shortcuts.asp
Shortcut Keys for Outlook 2003
Keys for E-Mail
All shortcut keys are based on the U.S. keyboard layout. Keys on other layouts may not correspond exactly to the keys on a U.S. keyboard.
For keyboard shortcuts in which you press two or more keys together, the keys to press are separated by a plus sign, like this: SHIFT+F10.
For shortcuts in which you press keys one after the other, the keys to press are separated by a comma, like this: ALT, F, X.
To perform this action...
Press...
To switch to Inbox
CTRL+SHIFT+I
To switch to Outbox
CTRL+SHIFT+O
To choose the account from which to send a message
CTRL+TAB (with focus on the To line), and then TAB to the Accounts button
To check names
ALT+K (using Word as e-mail editor)
CTRL+K (using the Outlook e-mail editor)
To display the Address Book (or the Select Names dialog box in a new message) CTRL+SHIFT+B
To send
CTRL+ENTER or ALT+S
To reply to a message
CTRL+R
To reply all to a message
CTRL+SHIFT+R
To mark a message as not junk
CTRL+ALT+J
To display blocked external content (in a message)
CTRL+SHIFT+I
To post to a folder
CTRL+SHIFT+S
To check for new mail
CTRL+M or F9
To go to the next message
UP ARROW
To go to the previous message
DOWN ARROW
To go to the row above (message or group heading)
ALT+UP ARROW
To go to the row below (message or group heading)
ALT+DOWN ARROW
To compose a new message
CTRL+N
To open a received message
CTRL+O or ENTER
To convert the format of a received message from HTML or RTF to plain text
CTRL+SHIFT+O
To add a Quick Flag to a message
INSERT
To display the Flag for Follow Up dialog box
CTRL+SHIFT+G
To mark as read
CTRL+Q
To mark as unread
CTRL+U
For send/receive
To perform this action...
Press...
To start send/receive for all defined Send/Receive groups with Include this group in Send/Receive (F9) selected (This can include headers, full items, specified folders, items less than a specific size, or any combination that you have defined.)
F9
To start a send/receive for current folder, retrieving full items (header, item, and any attachments)
SHIFT+F9
| http://forums.mysql.com/read.php?11,19373,26284#msg-26284 |
When you install MySQL 4.0, if you have a previous version installed, you will get the following error message:
Cannot Create Windows Service for MySQL. Error:0
I have found Umesh Shastry replied the error about how to fix it:
This error is encountered when you re-install or upgrade MySQL without first stopping and removing the existing MySQL service and install MySQL using the MySQL Configuration Wizard. This happens because when the Configuration Wizard tries to install the service it finds an existing service with the same name.
One solution to this problem is to choose a service name other than mysql when using the configuration wizard. This will allow the new service to be installed correctly, but leaves the outdated service in place. While this is harmless it is best to remove old services that are no longer in use.
To permanently remove the old mysql service, execute the following command as a user with administrative privileges, on the command-line:
C:\>sc delete mysql
[SC] DeleteService SUCCESS
Take a look at http://dev.mysql.com/doc/mysql/en/windows-troubleshooting.html
also this may happens when you have installed MyQL in the C:/Program Files/....
the space between Program & files also prevent from creating/starting service..
So install MySQL server in C:/ itself say C:/MYSQL
|