ACC1x: Sample Function to Make ENTER Add Lines in a Text BoxLast reviewed: April 2, 1997Article ID: Q89590 |
The information in this article applies to:
SUMMARYText boxes in Microsoft Access do not support using the ENTER key to add lines within a field. When ENTER is pressed in a text box, the next field or control is selected. This article describes a sample function that you can use to modify the action that results when you press ENTER so that a line is added to the current field instead of selecting the next field. NOTE: Microsoft Access 2.0 introduces the new EnterKeyBehavior property which can be set to "New Line in Field."
MORE INFORMATIONThe following sample function changes the behavior of the ENTER key in text boxes to allow adding lines instead of selecting a different field or control. This code should be attached to the BeforeUpdate event of the text box: In the Declarations section of a module, enter the following:
Option Explicit Declare Function GetKeyState% Lib "user.exe" (ByVal nKey%) Const VK_RETURN = &HDThe following is the sample function MakeEnterWork():
Function MakeEnterWork() If GetKeyState(VK_RETURN) < 0 Then DoCmd CancelEvent SendKeys "^{ENTER}" End If End FunctionNOTE: Some change must be made to the text box before this function will work because Microsoft Access evaluates controls only after they have been modified.
|
Additional query words: carriage return memo textbox
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |