Lower Case Text Field

ebbo

Registered User.
Local time
Today, 09:32
Joined
Sep 2, 2009
Messages
30
Hello,

I have made a form based on a query. The Field in question is called FTP_account.

The form is tabular showing a list of all FTP accounts.

I would like the data shown in the text box FTP_account to be shown in lower case only. At the moment it displays a mixture of lower or upper depending on how it was entered into the database by the person who setup the account.

I have googled and found the following code.....but my problem is which event should this go in.....I cant seem to get it to work...is this correct?

FTP_username.Text = LCase(FTP_username.Text)

Is anyone able to help me on this simple query?
 
use the after update event of the box. either that, or use input mask symbols that signify lowercase entries.
 
use the after update event of the box. either that, or use input mask symbols that signify lowercase entries.


It does not work when placed in the After Update event.. I still see Capital Letters in some rows.
 

Users who are viewing this thread

Back
Top Bottom