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! ![]() |
![]() ![]() Monday, January 11, 2010 – Permalink – Merge Access with WordDatabase integration"You can merge Microsoft Office Access 2007 data with a Word 2007 document by using the Mail Merge Wizard. This demo shows you how to create a simple form letter and how to troubleshoot problems. You can also use this feature to create address labels or any other type of Word document in which you want to display Access data."Office.Microsoft.com See all Topics access <Doug Klippert@ 3:43 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
Tuesday, December 29, 2009 – Permalink – Close FormsAuto ShutdownHere's how to close a form after it’s used:
TechRepublic See all Topics access <Doug Klippert@ 3:41 AM
Comments:
Post a Comment
Thursday, November 19, 2009 – Permalink – Control Access Text AlignmentDistribute Text Evenly Within ControlsWhen you add form or report controls, the Text Align property defaults to General setting: characters align to the left while numbers and dates align to the right. When you set up controls to act as headings or titles, you can achieve interesting visual results by changing the Text Align setting to Distribute (This is called Justify in Word). This setting distributes characters within the control evenly to span its entire width. If you apply this setting to a textbox control, the alignment switches to Left alignment when you click inside the control to allow for easy data entry.
See all Topics access Labels: Forms, Properties, Tips <Doug Klippert@ 3:31 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 26, 2009 – Permalink – Reduce Trips to the ToolboxSave shoe leatherWhen you add controls to forms and reports you'll often need to add several of the same type, such as when creating a group of option buttons or a series of unbound text boxes. In such cases, repeatedly moving between the Toolbox and the object you're designing can quickly become tedious. Fortunately, you can make the process easier. When you select the control you want to add from the Toolbox, double-click the control button (like double-clicking the Format Painter). Doing so lets you add as many controls of that type as you need. When you finish, click the button again to disable the control tool. See all Topics access <Doug Klippert@ 3:09 AM
Comments:
Post a Comment
Friday, August 28, 2009 – Permalink – Parameter v. FormYou have a choiceThere are a couple of ways to limit the data that is displayed in a Query or in a report. One is a Parameter Query
Also see FontStuff.com: Using Parameter Queries See all Topics access <Doug Klippert@ 3:02 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
Saturday, July 18, 2009 – Permalink – Auto FormJust add DataHighlight a Table in the Objects Table view. Go to the main menu bar and click on Insert. Towards the bottom of the menu, you'll find an entry for "AutoForm" Click on it and Access will create a data entry form based on the selected table. When you close the AutoForm, you will be asked if you want to save changes. Click Yes. (In 2007 go to Create>Form) The default name will be the name of the table. If you are using Hungarian notation, change the name from "tblCustomers" to "frmCustomers" and click OK. Also see: Hungarian Notation See all Topics access <Doug Klippert@ 3:48 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
Monday, March 09, 2009 – Permalink – Change Properties in Form ViewAlterations on the runAs you work with a form, you will, sometimes, find controls would benefit from minor tweaking. You may want to change the color of a text box, change the font that's used, or remove scroll bars. You may have been told switch to Design view to make changes. However, you can display the property sheets for a control while you're in Form view. To do so, click the Properties on the View menu, Right-click, or press [Alt][Enter]. As in Design view, the displayed properties relate to the control that is selected on the form. The property changes you make are reflected on the fly. You will be prompted to resave your form when you close it. See all Topics access Labels: Forms, Properties <Doug Klippert@ 3:49 AM
Comments:
Post a Comment
Thursday, January 29, 2009 – Permalink – Sort FormsCreate a sorting functionHere is one way to provide your users with a means to reorder fields in forms."Chris Weber develops a solution that allows users to sort the data in their forms (or subforms) that you can add to your application easily.Let Your Users Sort it Out ![]() Scroll down to the bottom of the page. There is a file that can be downloaded with the code. See all Topics access <Doug Klippert@ 3:04 AM
Comments:
Post a Comment
Thursday, December 11, 2008 – Permalink – Alphabetize by One Field or the OtherIf one is missing, use the otherLet's say you have a database that has the company name and a contacts name. In some cases the CompanyName field is empty. If that happens, you want to continue the alpha sort using the contact's LastName. To do this, you need to create an extra query field to provide the sort, using the NZ() function to replace the contents of one field for null values in another. (Nz(variant, [valueifnull])
<Doug Klippert@ 3:47 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
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
Wednesday, October 22, 2008 – Permalink – Input CharactersChange data display
If you don't like the error message that appears by default i.e.: "The value you entered isn't appropriate for the input mask '!\(999") "000\-0000;;_' specified for this field" See: How to Replace the Default Input Mask Error Message Also see: <Doug Klippert@ 3:05 AM
Comments:
Post a Comment
Friday, October 10, 2008 – Permalink – Hidden PasswordsFormat to mask entryYou can easily set up a text box to mask entries with asterisks, allowing you to hide entries like passwords from prying eyes. To do so, in Design view, display the properties for the text box and change the Input Mask property to Password. Passwords can then be displayed as ****** Also see: Microsoft-AccessSolutions.co.uk: Add Simple Security How to create a User Login Form in Microsoft Access See all Topics access Labels: Forms, Properties, Queries, Tutorials <Doug Klippert@ 3:23 AM
Comments:
Post a Comment
Monday, September 22, 2008 – Permalink – Highlight Form DataShow your positionConditional formatting, in Access, has one more alternative than Excel. Besides "Field Value Is" and "Expression Is", there is "Field Has Focus". You can call attention to the location of the insertion point.
Also see: Using the Value in a Control as Formatting Criteria and Using an Expression as Formatting Criteria Microsoft Office Online: Highlighting data for impact on a form in Access See all Topics access <Doug Klippert@ 3:50 AM
Comments:
Post a Comment
Sunday, August 17, 2008 – Permalink – Pictures in FormsIt can still be donePhoto Editor was an Office component prior to Office 2003. In Access/Office 2003/2007 MS Photo Editor was replaced, and Office no longer includes an OLE server for images. To do this, follow these steps:
Microsoft Support Article: 817095 Also: Ammara.com: Pictures in Access Forms & Reports OLE Object Photo & Image Problems & Solutions Access MVPS.org: Handle/Display images in forms/database "While it's possible to actually store the images within the database itself as OLE objects, normally it's not the preferred way. When you embed an OLE object in a table, you're storing a lot of overhead as well. This overhead is the information about the object (such as its parent application) that Access needs to store in order to render the object properly."Displaying photos in a form See all Topics access <Doug Klippert@ 3:51 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
Sunday, May 11, 2008 – Permalink – Forms and SlidesForms and SlidesPowerPoint in AccessThis download provides an Access database and a PowerPoint slide show. "Create a PowerPoint slide presentation from scratch using Access data. In addition, display and control a slide show from within an Access form. Walk through the solution and explore ways to extend the sample for your own applications. Here is an MSDN article: If you have some knowledge of VBA, you can probably figure it out from the code on the Access Form. <Doug Klippert@ 6:23 AM
Comments:
Post a Comment
Saturday, May 03, 2008 – Permalink – Sample Queries, Forms, ReportsExamples to part outThis sample queries database contains examples of useful database queries, including the crosstab query, the union query , and the join query Sample: query topics database Here are some other sample databases. They are all for Access 2000, but the installed base is predominantly in that format. Access 2000 is also the default format for Access 2002 and 2003. Sample Access databases that you can download and adapt
Some forms include:
See all Topics access <Doug Klippert@ 6:15 AM
Comments:
Post a Comment
Tuesday, April 15, 2008 – Permalink – List Box FilterMultiple selectionsFilter a Report based on List Box Fabalou.com: "How to open a report based on a multiple selection in a list box. For example, you may have a list of makes of car and a report that shows various details for each make of car. You want to allow the users to select a range of cars and pull up the report according to that selection."
<Doug Klippert@ 5:30 AM
Comments:
Post a Comment
Sunday, April 13, 2008 – Permalink – Canada/US Postal CodesAutomatic Input masksIf you have a mix of Canadian and US postal codes, you might play with the following code inserted as a Country control "After Update" Event property.
See: Trinity University - San Antonio, Texas: <Doug Klippert@ 5:57 AM
Comments:
Post a Comment
Monday, March 17, 2008 – Permalink – Forms and DataGood comboIn Access, tables can be a bother to use for data entry. Constructing a Form can make it easier. Here is an MS demo about combining the two: "While working with forms, a split form can be a very useful view because you simultaneously get two views of the form that are connected to the same data source. Form and data ![]() See all Topics access <Doug Klippert@ 7:41 AM
Comments:
Post a Comment
Saturday, February 09, 2008 – Permalink – Display the Current Record NumberWithout navigationYou may want to remove the navigation buttons from an Access form but still display the current record number. Not the ID or serial number, but the record number that would appear in the navigation box.
<Doug Klippert@ 7:09 AM
Comments:
Post a Comment
Wednesday, February 06, 2008 – Permalink – Quick Subforms and SubreportsDrag 'em on overWhen you need to create a subform or subreport, you probably use the Subform/Subreport tool from the Toolbox to draw where you want to add the control. You can also create subform and subreports using drag and drop. Simply open the main form or report in Design view, then drag the appropriate form or report from the Database window to where you want the control created. Note that you'll still need to set Link Child Fields and Link Master Fields properties on the new control. See all Topics access <Doug Klippert@ 7:03 AM
Comments:
Post a Comment
Wednesday, January 30, 2008 – Permalink – E-mail Access FormQuestion and collectionAccess 2007 has a wizard that will walk you through the process of sending an information gathering form through Outlook. The wizard is on the External Data tab in the Collect Data group. ![]() "You begin with the Collect Data Through E-mail Messages Wizard, which guides you through the steps of creating a form. Collect data by using e-mail See all Topics access <Doug Klippert@ 7:19 AM
Comments:
Post a Comment
Thursday, December 27, 2007 – Permalink – Resize FormIt's fitting
<Doug Klippert@ 7:21 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
|