
|
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, March 31, 2011 – Permalink – Insert Line Breaks with CodeLabel Captions
To successfully insert a line break in a label caption, you need to include both a line feed character and a carriage return character, entered consecutively.
Me.Label1.Caption = "Line 1" & _ Chr(13) & Chr(10) & "Line 2" However, you can also simplify your code using an built-in constant: Me.Label1.Caption = "Line 1" & vbCrLf & "Line 2" See all Topics access <Doug Klippert@ 3:29 AM
Comments:
Post a Comment
Wednesday, March 30, 2011 – Permalink – Zoom BoxBetter viewAccess does not provide much room to enter long expressions in queries, forms, or reports. You can drag the column wider, but there is a neater, quicker method.
<Doug Klippert@ 3:27 AM
Comments:
Post a Comment
Wednesday, March 23, 2011 – Permalink – Place 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@ 3:26 AM
Comments:
Post a Comment
Thursday, March 17, 2011 – Permalink – Hardcopy RelationshipsDocument database
In Access 2000 thru 2003, this is easy. Simply display the Relationships window as usual and then choose File>Print Relationships from the menu bar. Doing so displays a report preview that you can then print or save.
Labels: General, Relationships, Reports, Tips <Doug Klippert@ 3:37 AM
Comments:
Post a Comment
Tuesday, March 08, 2011 – 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@ 3:11 AM
Comments:
Post a Comment
Thursday, March 03, 2011 – Permalink – Use a Table Aliasto change names in a queryWhen you need to change the table name referenced in an existing Access query, it can be a pain. This is especially true if the query contains a large number of fields. You typically might use an alias when you need to relate a table to itself or tables have long or unwieldy names. If you make a practice of always using aliases in your queries, you can easily change which table is used by changing the one occurrence of the original table name in the query's FROM clause.
See all Topics accessLabels: Customize, General, Properties, Relationships, Tables, Tips <Doug Klippert@ 3:51 AM
Comments:
Post a Comment
|