Solved Variable fails with Type Mismatch

dibblermail

Member
Local time
Today, 16:58
Joined
Jan 10, 2025
Messages
48
I assume I'm being an muppet, but cant see where.

I have this code
Code:
ColourBack = DLookup("ItemValue", "BackgroundStoredValues", "[UseID]=1 AND [ItemID]=1")

the Public variable ColourBack is stored as a String

ItemValue is saved as short text in the table
UseID & ItemID are stored as short numbers in the table

I'm using ColourBack here
Code:
Me.TBOX_DateInitial.BackColor = ColourBack

Its finding what I need it to when I hover over the variable. But its giving a type mismatch error when it hits the line above.

If I use the immediate window & type ?ColourBack it resolves correctly as RGB(254, 254, 254)

If I hard code it works fine
Code:
Me.TBOX_DateInitial.BackColor = RGB(254, 254, 254)

What am I missing?
 
Try it this way:
Code:
Me.TBOX_DateInitial.BackColor=Eval(ColourBack)
 
Try it this way:
Code:
Me.TBOX_DateInitial.BackColor=Eval(ColourBack)
That's perfect, it resolves it correctly. I'll do it that way going forward.

But what was wrong with it in the first place? What did I miss that meant it required the Eval function?

Or is it a "because Access" sort of issue?
 
If you like working with R, G, B then you can create your table to store R, G, B.
Something like
CatIDRedGreenBlue
A15016660
B281717
C31148112
D90161115
E1577185
F24823296
G124105241
H11516049
I223157197
J124102172
K54161140
L1011586
M197158172
N18243222

Then you can build a function that returns the RGB value for a UserID and ItemID. In my case I only have a CategoryID I pass to the function.


Something like
Code:
Public Function GetColor(Category As Variant) As Long
  Dim r As Integer
  Dim g As Integer
  Dim b As Integer
 
  If Not IsNull(Category) Then
    r = DLookup("Red", "tblCategories", "CatID = '" & Category & "'")
    g = DLookup("Green", "tblCategories", "CatID = '" & Category & "'")
    b = DLookup("Blue", "tblCategories", "CatID = '" & Category & "'")
    GetColor = RGB(r, g, b)
  Else
    GetColor = RGB(255, 255, 255)
  End If
End Function
 

Users who are viewing this thread

Back
Top Bottom