Book Use your pdf converter to make your pdf files easy! You can now buy software that makes converting pdf to doc possible! Did you know you can even convert pdf to word? Home Page Bloglines 1906 CelebrateStadium 2006 OfficeZealot Scobleizer TechRepublic AskWoody SpyJournal Computers Software Microsoft Windows Excel FrontPage PowerPoint Outlook Word ![]() ![]() Host your Web site with PureHost! ![]() |
![]() ![]() Thursday, February 18, 2010 – Permalink – Custom QATAccess additionsApplications put most of the most-used commands on the Home tab's Ribbon, not everything is there. You may want to add Close, Close All, or Print commands, for example. In the upper Left corner is the Quick Access Tool bar. To update the QAT: Click the down-pointing arrow to the right of the QAT. Choose any common commands (New, Close, Print, etc.) by checking the option. See all Topics access Labels: Customize <Doug Klippert@ 3:32 AM
Comments:
Post a Comment
Tuesday, January 26, 2010 – Permalink – Where's the Temp[lateFind and/change storage spotsDescribes the different template categories and the locations of templates in 2007 Office programs. Also describes the registry settings that control where to find your custom templates. Support.Microsoft.com See all Topics access <Doug Klippert@ 3:49 AM
Comments:
Post a Comment
Thursday, January 07, 2010 – Permalink – Automate ShutdownClose everythingIt's generally considered good form to close all forms and reports when you're shutting down a database.Here's a link to some code that takes care of it for you. TechRepublic.com See all Topics access <Doug Klippert@ 3:01 AM
Comments:
Post a Comment
Saturday, October 31, 2009 – Permalink – Hiding Duplicates in Query ResultsOnce is enoughIt's easy to hide duplicate entries when you run a query, even though Access doesn't go out of its way to call attention to this ability.
Access displays unique records based on each field returned by the query. See all Topics access <Doug Klippert@ 3:12 AM
Comments:
Post a Comment
Tuesday, October 20, 2009 – Permalink – Display Data OnceReport TrickSometimes, you may have data that needlessly clutters a report. For instance, suppose your report is listing the fields strCompany, strFirstName, and strLastName. If there are multiple names listed for each company, and the report is sorted by company name, repeating the company information is unnecessary. You may want to set a group header based on the company name, but there's an easier way to hide the redundant data.
![]() If the data in the modified control is the same as the data from the previous record, the control is hidden. See all Topics access <Doug Klippert@ 3:35 AM
Comments:
Post a Comment
Saturday, September 19, 2009 – Permalink – Disable ConfirmationOnly for the braveAccess tries to prevent user errors that would have calamitous effects on data or an application by throwing up confirmation boxes before potentially dangerous actions. This provides users with an out before committing irreversible changes to the database. Although you probably want these confirmation dialog boxes in place for end-users, you may find that they slow your work down too much. You may, also, click through the dialog boxes so quickly that they're essentially ineffective. If you have a programmer's version of hubris, you can prevent Access from displaying confirmation dialog boxes. To do so, choose Tools>Options from the menu bar and click on the Edit/Find tab. Then, clear the appropriate check boxes in the Confirm panel that correspond to the dialog boxes you want to suppress. Finally, click OK. In 2007, click the Office logo and then Access Options ![]() Good luck, you've been warned. See all Topics access <Doug Klippert@ 3:00 AM
Comments:
Post a Comment
Sunday, August 16, 2009 – Permalink – Change Keyboard NavigationIt's your choiceYou, probably. take for granted how your direction arrow and Enter keys behave in Access. When you press Enter the focus moves to the next field and the contents of the field are selected. Likewise, when you press the direction arrow keys, the focus moves to the next field in the appropriate direction. You aren't locked into these behaviors. If you'd like, you can set up the arrow keys to move from one character to the next in the current field, rather than moving focus to the next field. You can also configure the Enter key to move to the next record when it's pressed or configure it to do nothing at all. When you do move focus to another field, you have the option to place the insertion point at the beginning or end of the field, rather than selecting the field's entire contents. To modify these settings, choose Tools>Options from the menu bar and click on the Keyboard tab. Then, simply make the selections you want and click OK. ![]() In 2007 it's under Access Options>Advanced when you click the Logo in the upper left corner. ![]() See all Topics access <Doug Klippert@ 6:55 AM
Comments:
Post a Comment
Saturday, August 08, 2009 – Permalink – Reduce Entry MistakesDisable AutoExpandWhen you type an entry in a combobox control Access will typically attempt to complete the entry based on the control's lookup list. This is controlled by the AutoExpand property, which is set to Yes (-1) by default. Although such behavior is helpful, it can cause problems if your value list contains several items that are close in spelling, since it's easy for users to accidentally let Access choose the wrong item. You can avoid errors by setting the control's AutoExpand property to No (0) in Design view or using VBA to set the property equal to 0. Once you've made the change users are forced to type the entire entry or select an item using the combobox control's dropdown list. (Works the same in Access 2007) ![]() See all Topics access <Doug Klippert@ 3:06 AM
Comments:
Post a Comment
Monday, March 16, 2009 – Permalink – New Default Access Form TemplateSet new standardsYou can change Access's default form. To set up a custom template,
In Access 2007, click the Office button in the upper left corner and the click Access Options. The design options are located under Object Designers: Forms/Reports. The same thing can be done with Reports. ![]() (The settings are saved in the Access workgroup information file, not in a particular data base) Also: MeadinKent.co.uk: Making a report template Here's a calendar from MeadinKent: Calendar page See all Topics access <Doug Klippert@ 3:13 AM
Comments:
Post a Comment
Tuesday, December 02, 2008 – Permalink – Text Box HighlightsChange backgroundIt can be difficult to tell which text box on a form you're currently working with. One solution is to highlight the current position, with a different background. Access 2000+ allows you to do this with conditional formatting, but you can also get a similar result using code. To do so, create a new Module and add the following code:
Save and close the Module, then open the appropriate Form in Design view. Click the Code button and insert =Highlight("GotFocus") in each of the Form's textbox control's GotFocus event procedure. Likewise, add =Highlight("LostFocus)") to each textbox's LostFocus event procedure. <Doug Klippert@ 6:55 AM
Comments:
Post a Comment
Sunday, November 16, 2008 – Permalink – Keyboard NavigationChange directionsYou can change how your direction arrow and Enter keys behave in Access. By default, when you press Enter the focus moves to the next field and the contents of the field are selected. When you press the direction arrow keys, the focus moves to the next field in the appropriate direction. If you would like, you can set up the arrow keys to move from one character to the next in the current field, rather than moving focus to the next field. You can configure the Enter key to move to the next record when it's pressed or configure it to do nothing at all. When you do move focus to another field, you have the option to place the insertion point at the beginning or end of the field, rather than selecting the field's entire contents. To modify these settings, choose Tools> Options from the menu bar and click on the Keyboard tab. Make the selections you want and click OK. <Doug Klippert@ 3:15 AM
Comments:
Post a Comment
Friday, November 07, 2008 – Permalink – Null, Nothing, NadaEmpty entries"An example might be fax numbers in a customer database. If you store a Null, it means you don't know whether the customer has a fax number.
Make Null Zero See all Topics access Labels: Customize, Forms, Properties, Tips <Doug Klippert@ 4:10 AM
Comments:
Post a Comment
Monday, September 08, 2008 – Permalink – Switchboard InflationHave more controlsYou cannot have more than 8 items on a switchboard when you use the Access Switchboard Manager on the Tools>Database Utilities menu. You can, however, modify the Switchboard objects directly.
<Doug Klippert@ 8:05 AM
Comments:
Post a Comment
Monday, August 11, 2008 – Permalink – Dynamic Formatting of FormsGetFocus, Resize, Color DataHere is a description about how to perform three different actions on forms to respond to data entries or changes in events.
Look for a demo file called "502DOBSON.ZIP" (The image file in the code resides in the articles folder of the c:\ path. You'll probably need to update the path for the image files on your computer.) Also see: Access MVPS.org: Colors and Continuous forms Changing the Background Color of the Current Record See all Topics access <Doug Klippert@ 3:41 AM
Comments:
Post a Comment
Saturday, March 22, 2008 – Permalink – Default SaveChoose your own locationWhen you choose to save most Office files, the Save dialog box defaults to the Documents or My Documents folder. (The following directions work in 2007, but you need to click on the Office button in the upper left corner of the Window)
Change the folder where e-mail messages and attachments are saved Also: D.C. Everest school district Weston, WI: Office Default Paths If you don't want to change the default, but would like to be able to quickly go to an alternate site, open the Save or Save Attachment dialog box. On the left side of the box is the Places Navigation bar. If you click the Desktop icon, that location will be used to save the file. You can add spots to the bar. Browse to the specific folder. Highlight the folder and click the down arrow beside the Tools option. Select "Add to My Places." The file or e-mail attachment can then be saved where you want. See all Topics access <Doug Klippert@ 7:48 AM
Comments:
Post a Comment
Tuesday, February 26, 2008 – Permalink – Set Field DefaultsSpeed up table creation with default field settings
In Access 2007 go to Access Options>Object Designers: ![]() See all Topics access <Doug Klippert@ 6:43 AM
Comments:
Post a Comment
Thursday, January 17, 2008 – Permalink – What the ####Truncated Numbers
<Doug Klippert@ 6:12 AM
Comments:
Post a Comment
Thursday, December 27, 2007 – Permalink – Resize FormIt's fitting
<Doug Klippert@ 7:21 AM
Comments:
Post a Comment
Saturday, December 01, 2007 – Permalink – Splash ScreenBrand your appYou can replace the Access splash screen with your own logo. Access displays a quick splash screen when you launch it. You can replace that splash screen with a graphic of your own. Save a bitmap graphic in the same folder as the database. Give the graphic the same name as your database and make sure it has a BMP extension. (MyDatabase.BMP) Now when you launch Access by double-clicking on the database icon or its shortcut, you will see your logo instead of Access's default screen. You can also make the graphic 1x1 pixels, so it won't be seen. Advisor.com: Create Personalized Splash Screens for Access MS Knowledge Base: How to Create a Custom Startup "Splash" Screen See all Topics access <Doug Klippert@ 6:33 AM
Comments:
Post a Comment
Monday, October 22, 2007 – Permalink – Change Access RibbonOh, Fooey (F U I)
Customizing Ribbon in Access 2007 See all Topics access Labels: Customize <Doug Klippert@ 6:48 AM
Comments:
Post a Comment
Friday, August 17, 2007 – Permalink – Place Access Controls Exactly Where You WantWorks with other apps as wellThe Snap To Grid feature is an invaluable tool for aligning controls when you're designing forms and reports. However, when you fine-tune the placement of some controls, you'll probably want to move some of them to positions that aren't exactly aligned with the design grid. You can temporarily disable the Snap To Grid feature by holding down the [Ctrl] key. Then, you can use your mouse or the cursor arrows to place the controls exactly where you want them. See all Topics access <Doug Klippert@ 11:56 AM
Comments:
Post a Comment
Tuesday, July 31, 2007 – Permalink – Startup Switches for AccessYour choice"This article shows you how to customize the way that Microsoft Office Access 2007 starts by adding switches and parameters to the startup command. For example, you can have Office Access 2007 open a specific file or run a specific macro when it starts." Office.Microsoft.com Also: Support.Microsoft.com VB123.com See all Topics access <Doug Klippert@ 6:28 AM
Comments:
Post a Comment
Saturday, June 30, 2007 – Permalink – Split Access DatabaseSeparate tablesYou don't need to keep all of your data in one file. You can split your MDB file into data and application files.
In some cases you will link additional files:
In Access 2007:
<Doug Klippert@ 7:37 AM
Comments:
Post a Comment
Friday, May 25, 2007 – Permalink – Ripple the RibbonChange the look"Learn how you can create a custom Office Fluent Ribbon for an Access 2007 database by using only Office Fluent extensibility markup XML and macros.
<Doug Klippert@ 6:07 AM
Comments:
Post a Comment
Friday, May 18, 2007 – Permalink – Highlight the Current ControlCode vs. property
Access allows you to do this with conditional formatting, but you can also get a similar result using code.
Function Highlight(Stat As String) As Integer
Click the Code button and insert Highlight("GotFocus") in each textbox control's GotFocus event procedure. Likewise, add Highlight("LostFocus") to each textbox's LostFocus event procedure. When you've finished,save the changes, close the VBE, and switch to Form view.
<Doug Klippert@ 6:14 AM
Comments:
Post a Comment
Thursday, May 10, 2007 – Permalink – Hiding columnsIn Datasheet view
<Doug Klippert@ 6:16 AM
Comments:
Post a Comment
Wednesday, May 02, 2007 – Permalink – Design Access UICustomize the RibbonStaid old Access actually can be polished up quite a bit. Erik Rucker is the Microsoft Access - Group Program Manager. Here is the link to his blog that describes how to do cool things the 2007 User Interface. "The ribbon UI presents a ton of new flexibility for us creating Access and for you building apps on top of Access that wasn't there before. Customizing the New Access UI See all Topics access Labels: Customize <Doug Klippert@ 6:29 AM
Comments:
Post a Comment
Tuesday, February 06, 2007 – Permalink – Customize the 2007 RibbonLet the add-ins beginIt is said that the Office 2007 Graphical User Interface Ribbon cannot be as easily changed or modified like it has been in previous versions. This may be partially true, but not all is lost. Here is some information from the equine's mouth: Learn how to customize the Ribbon user interface (UI) in the 2007 Microsoft Office release. Also learn how new features in Microsoft Visual Studio 2005 Tools for the 2007 Microsoft Office System support RAD development of Ribbon customizations. (40 printed pages) Customizing the Office (2007) Ribbon Monsieurs MS also have a downloadable spreadsheets with the Control IDs. There are files for 2003 as well. Lists of Control IDs 2007 Office System Add-In: Icons Gallery See all Topics Labels: Customize <Doug Klippert@ 7:51 AM
Comments:
Post a Comment
|