
|
Book 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! |
![]() 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
Sunday, March 23, 2008 – Permalink – Reminder - Task - E-mailSent from AccessA great web site for Office information is Woody Leonard's WOPR.com. There are a couple of newsletters associated with the site including: Woody's ACCESS Watch
"If you have a table that contains a date field, and you want to make sure that something happens on that date, one way is to create an Outlook task with a reminder that will pop up on the specified date; you can even use the Outlook reminder to create an email message that will be sent on the specified date.
Helen Feddema has been working with Word since v. 1.1, Access since the beta of v. 1.0, and Outlook since the beta of v. 8.0 (that's where Outlook started its version numbering). See all Topics access <Doug Klippert@ 6:51 AM
Comments:
Post a Comment
Thursday, February 21, 2008 – Permalink – VBA, Named ArgumentsAn easier read
MsgBox(prompt[, buttons] [, title] [, helpfile, context]) When you work the MsgBox function this way, the order of the arguments can't be changed. Therefore, if you want to skip an optional argument that's between two arguments you're defining, you need to include a blank argument, such as: MsgBox "Hello World!", , "My Message Box" Named arguments allow you to create more descriptive code and define arguments in any order you wish. To use named arguments, simply type the argument name, followed by :=, and then the argument value. For instance, the previous statement can be rewritten as: MsgBox Title:="My Message Box", _ (To find out a function's named arguments, select the function in your code and press [F1].) See all Topics access Labels: VBA <Doug Klippert@ 8:00 AM
Comments:
Post a Comment
Saturday, January 19, 2008 – Permalink – Convert Access Macros to VBAMacros to Modules
In 2007 go to Database Tools and look in the Macros group. <Doug Klippert@ 7:05 AM
Comments:
Post a Comment
Sunday, December 16, 2007 – Permalink – Office VBA TricksVideo + Free codeQuick tips VBA Video "Learn tips and use sample code for several Office applications. These tips can help you to be more productive and can also be a starting point for developing your own tools, utilities and techniques."
Ten Tips for Office VBA Developers See all Topics access Labels: VBA <Doug Klippert@ 5:06 AM
Comments:
Post a Comment
Saturday, November 03, 2007 – Permalink – Automation - VBA - Help FileOffice Wide
See all Topics access Labels: VBA <Doug Klippert@ 6:54 AM
Comments:
Post a Comment
Friday, August 17, 2007 – Permalink – Insert Line Breaks Through 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" & _ However, you can also simplify your code using an built-in constant: Me.Label1.Caption = "Line 1" & vbCrLf & "Line 2" See all Topics access Labels: VBA <Doug Klippert@ 7:26 AM
Comments:
Post a Comment
Tuesday, July 17, 2007 – Permalink – Flag Access ControlsTag PropertyThe TAG property allows you to associate up to 2,084 characters of text with any form, report, section, or control. This is especially helpful when you want to single out a specific subset of controls. For instance, say that you want to hide certain controls on a form when a user clicks a button. You can flag which controls will be hidden by entering the word "Hide" (or any other consistent word) in each control's Tag property. Then, attach the following code to the command button's Click event procedure: Dim ctl As Control ![]() See all Topics access Labels: Macros, Properties, VBA <Doug Klippert@ 6:42 AM
Comments:
Post a Comment
Tuesday, June 19, 2007 – Permalink – Indent CodeRealign a bunchIndenting blocks of VBA code, such as statements within loops or If...Then statements, makes reading a procedure much easier. You probably indent a code statement using the [Tab] key, and outdent by using [Shift][Tab]. However, you may not be aware that the [Tab] and [Shift][Tab] techniques also work when multiple code lines are selected. The Visual Basic Editor also provides Indent and Outdent buttons on the Edit toolbar that allow you to easily reposition blocks of code. See all Topics access Labels: VBA <Doug Klippert@ 6:31 AM
Comments:
Post a Comment
Monday, June 11, 2007 – Permalink – Access Field HighlightingMore codeThis technique can also be applied to controls like option groups. Instead of using OnGotFocus and OnLostFocus events you must use the OnEnter and OnExit events. In addition, the control group's BackStyle property must be set to Normal to take advantage of the Windows color scheme: Function Highlight(Stat As String) As Integer Take advantage of global constants. Just add the following two statements to a module: Global Const Orange = 39423 Global Const LightBlue = 16776960 Then, set the OnGotFocus and OnLostFocus events for the controls in the following format: Private Sub controlName_GotFocus() See all Topics access Labels: VBA <Doug Klippert@ 6:14 AM
Comments:
Post a Comment
Monday, April 23, 2007 – Permalink – Numbers to WordsCardinal numbersYou can create a User Defined Function in Access to covert numbers to words. The function can be used in a calculated field or control in a form or report. From the Microsoft Knowledgebase collection: How to Convert a Numeric Value into English Words - 210586 ![]() Also: The Access Web (MVPS) Convert Currency ($500) into words (Five Hundred Dollars) TECH on the Net.com Convert currency into words (The Access code also works in Excel) To create Cardinal numbers in Excel see: Excel - Numbers to Words (The Excel code also works in Access) Word appears to be the only Office app with a built in cardinal number function. For Word see: Word - Numbers to Words See all Topics access <Doug Klippert@ 5:15 AM
Comments:
Post a Comment
Saturday, March 31, 2007 – Permalink – Comment CodeEdit toolbar
<Doug Klippert@ 7:05 AM
Comments:
Post a Comment
|