S
Sash
Hi everyone. I'd like to start by thanking everyone. I'm self-taught and
have learned a tremendous amount through these message boards. That being
said, you'll understand that I'm still quite fresh.
I want to define several items that I can define publicly and access from
any form in the database. Below is a very simple example of one thing I'd
like to define whereby I would be able to reference lgwhite anywhere in the
database for the result of RGB(255, 255, 255).
I'm assuming you'd place some kind of code in a Module. I know the
following is wrong, but it's the best way I can try to describe.
Public
Dim lgwhite as long
lgwhite = RGB(255, 255, 255)
End Sub
have learned a tremendous amount through these message boards. That being
said, you'll understand that I'm still quite fresh.
I want to define several items that I can define publicly and access from
any form in the database. Below is a very simple example of one thing I'd
like to define whereby I would be able to reference lgwhite anywhere in the
database for the result of RGB(255, 255, 255).
I'm assuming you'd place some kind of code in a Module. I know the
following is wrong, but it's the best way I can try to describe.
Public
Dim lgwhite as long
lgwhite = RGB(255, 255, 255)
End Sub