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
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
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
What am I missing?
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?