1. Go to Settings (Alt + P).
2. Under User Interface, tick the box next to "Disable tab bar's top spacing when browser window is maximized."
Wednesday, March 18, 2015
Wednesday, February 4, 2015
How to remove all frames from document in Microsoft Word with VBA code
1. Press Alt + F11 to open Visual Basic window.
2. Go to Insert -> Module
3. Paste the following code in the window appearing:
4. Click the Run button or press F5.
2. Go to Insert -> Module
3. Paste the following code in the window appearing:
Sub RemoveFrames()
Dim frm As Frame
For Each frm In ActiveDocument.Frames
frm.Delete
Next frm
End Sub4. Click the Run button or press F5.
Wednesday, January 28, 2015
Lock screen background file location
The lock screen background files in Windows 8, 8.1 and 10 can be found in the following folder:
C:\Windows\Web\Screen
Wednesday, January 14, 2015
How to fix "Updates are disabled by administrator" error in Google Chrome
- Launch regedit by pressing Win+R and enter "regedit" in the field.
- Go to the following folder:
HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Google\Update - Set the value of "UpdateDefault" to 1.
How to switch back Windows 10 Alt+Tab window to legacy appearance
1. Launch regedit by pressing Win+R and enter "regedit" in the field.
2. Go to the following folder:
2. Go to the following folder:
HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer
3. Add a DWORD named the following and set its value to 1
AltTabSettings
Labels:
alt,
alttab,
how to,
legacy,
switch back,
tab,
windows 10
Thursday, December 25, 2014
How to convert bulleted and/or numbered lists to plain text in Word
1. Press Alt + F11 to open Visual Basic window.
2. Press Ctrl + G for Immediate window (or go to View and choose Immediate Window).
3. Paste the following code to the opened window on the bottom and press Enter:
4. Close Visual Basic window to return to the document.
2. Press Ctrl + G for Immediate window (or go to View and choose Immediate Window).
3. Paste the following code to the opened window on the bottom and press Enter:
ActiveDocument.ConvertNumbersToText4. Close Visual Basic window to return to the document.
How to remove field codes from a Word document
1. Select the text you want to remove the fields from (Ctrl + A if you want all)
2. Press Ctrl + Shift + F9
2. Press Ctrl + Shift + F9
Subscribe to:
Posts (Atom)