25 | 26 | Download and save JSON.bas to a file - open [the page with JSON.bas code](https://github.com/omegastripes/VBA-JSON-parser/blob/master/JSON.bas), right-click on Raw button, choose Save link as... (for Chrome): 27 | 28 |  29 | 30 | Import JSON.bas into the VBA Project - open Visual Basic Editor by pressing Alt+F11, right-click on Project Tree, choose Import File, select downloaded JSON.bas: 31 | 32 |  33 | 34 | Or you may drag'n'drop downloaded JSON.bas from explorer window (or desktop) directly into the VBA Project Tree. 35 | 36 |
37 |40 | 41 | Open Visual Basic Editor by pressing Alt+F11, click Menu - Tools - References, scroll down to **Microsoft Scripting Runtime** and check it, press OK: 42 | 43 |  44 | 45 | ###  MS Word Object Library compatibility note 46 | When referencing both **Microsoft Scripting Runtime** and **Microsoft Word Object Library** make sure that **Microsoft Scripting Runtime** located above **Microsoft Word Object Library** in the the list, if not so then ajust the position by clicking Priority arrows to the right of the list. 47 | 48 |  49 | 50 | Otherwise you have to change all `Dictionary` references to `Scripting.Dictionary` in your VBA code. 51 | 52 |
53 |