Subject |
Re: Font Selection |
From |
Mervyn Bick <invalid@invalid.invald> |
Date |
Sun, 8 Sep 2019 08:32:35 +0200 |
Newsgroups |
dbase.getting-started |
On 2019-09-08 12:56 AM, Ivan Benttini wrote:
> Everything is now aok and running, they now ask if I could change onNavigator show the user last name in ALL CAPITALS letters.
>
>
> function form_onNavigate(type,nRow)
> // This function is only Applicable on the FORM object...
> local a
> a=form.entryfield3.value //store value of EF3 in a variable
Change this line to
a=upper(form.entryfield3.value)
Mervyn.
|
|