| >GRSoftware >VBA Tutor >Newsletter Issues >Newsletter #5 >Newsletter #7 |
VBA TUTOR NEWSLETTER #6~ 14-3-2000 Help for the beginner to intermediate VBA programmer |
In this issue we will be looking at the importance of using 'named' ranges in EXCEL, including a quick and niffy way to access them using VBA. |
| ~ VBA in GENERAL ~ |
Ever lost an important Word, Excel or Powerpoint document? Have a look at the downloadable demos available at www.officerecovery.com. |
| ~ VBA in WORD ~ |
It is good programming practice to release resources allocated by using the 'set' statement. In VBA Help Newsletter Tutorial 4, we used the set statement to set 'fs' to the 'Application.FileSearch' object. When the variable 'fs' is finished with, the resources should be released by using the set statement again.Set fs = Application.FileSearchWith fs .LookIn = "C:\Program Files\Microsoft Office\Templates" ' rest of the code Set fs = Nothing If such resources are not released in large projects, Windows can become both slow and unstable. |
~ COOL WORD RESOURCE ~ |
| ~ VBA in EXCEL ~ |
One of the most powerful feature you can use in Excel is 'Named Ranges'. (To find out how to name ranges, ask the office assistant to help you with 'naming ranges'.) |
~ COOL EXCEL RESOURCE ~ |
| ~ VBA in ACCESS ~ |
Using VBA in ACCESS is not one of our strengths, although we are working on it. So, in this section, we will just point you towards some excellent resources. |
~ COOL ACCESS RESOURCE ~ |
| © 2000 Gary Radley |