Saturday, 24 March 2012

Spelling Check Probelm in MS Word

Sometimes spelling check in Microsoft Word stops working. There are a couple of solutions which might be considered:

Solution A:
  1. Go to "File >Options >Proofing"
  2. Tick "Check grammar while spelling" on
  3. Tick "Mark grammar errors as you type" on

Solution B:
  1. Go to "File >Options >Add-Ins"
  2. Select "Disables Items" from "Manage" drop-down box
  3. Click "Go" 
  4. Select the proper items in the list and click "Enable"


No comments:

SQL: Generate a range of numbers

SELECT ones.n + 10*tens.n + 100*hundreds.n + 1000*thousands.n FROM       (VALUES(0),(1),(2),(3),(4),(5),(6),(7),(8),(9)) ones(n),      (VALU...