Ask a Question related to Microsoft Access, Design and Development.
-
Joseph Udell #1
Trying to change a Font Size
Good Morning,
I'm trying to change a Fontsize after clicking a menu Item. The user
selects one of five options and it updates a SubForm. After Updating the
SubForm, I would like the font size to change as a visual cue. I have
copied the script below. I have it broke into two subs. Access kicks out
an error that reads: The expression On Click you entered as the event
proprty produced the following error: Member already exists in an object
module from which this object module derives.
Any help would be appreciated.
Private Sub MetNav_Click()
Me.SubMenu.SourceObject = "Menu-MetNav"
End Sub
Private Sub MetNav()
If Me.SubMenu.SourceObject = "Menu-MetNav" Then
Me.MetNav.FontSize = "16"
End If
End Sub
Joseph Udell Guest
-
How to change the font, the font size, and color text
How to change the font, the font size, and the color for a selected text in C++. David -
Can't change font size!?
Relatively simple HTML page - font size was VERY small, yet no matter what I do to try & change it, it always reverts back to 9pt. What could be... -
Change Font Size
Change Font Size, and bolt and move typed text Thanks for your help russ -
how to change font size from pod
I'm trying to determine the pod codes I need to generate the string <font size="-1">®</font> in my html. I've determined that I can get the... -
-How to change font size in php?
Hi Can someone please provide the proper php syntax for changing the font size? Below is an example in plain English so you'll understand the... -
Matthew Sullivan #2
Re: Trying to change a Font Size
Joseph:
It appears that you have a Sub named "MetNav" AND a Control named
"MetNav". When I set up a sample form like that, I get the error you
describe.
So: rename MetNav().
-Matt
On Tue, 8 Jul 2003 07:57:07 -0500, "Joseph Udell"
<udellj@eglin.af.mil> wrote:
>Good Morning,
> I'm trying to change a Fontsize after clicking a menu Item. The user
>selects one of five options and it updates a SubForm. After Updating the
>SubForm, I would like the font size to change as a visual cue. I have
>copied the script below. I have it broke into two subs. Access kicks out
>an error that reads: The expression On Click you entered as the event
>proprty produced the following error: Member already exists in an object
>module from which this object module derives.
>
>Any help would be appreciated.
>
>Private Sub MetNav_Click()
> Me.SubMenu.SourceObject = "Menu-MetNav"
>End Sub
>
>
>Private Sub MetNav()
> If Me.SubMenu.SourceObject = "Menu-MetNav" Then
> Me.MetNav.FontSize = "16"
> End If
>
>End Sub
>Matthew Sullivan Guest



Reply With Quote

