What is the datatype for Color
in MSAccess?
views:
36answers:
1
+2
A:
Use Long Integer (stores 4 bytes) in your database field and use Color.ToArgb()
to get the integer value to store. Then, use Color.FromArgb()
to create a color from the stored value.
It worked. thanks! :)
Rye
2010-08-23 05:22:46
I don't understand this answer. It doesn't involve Access. The Color property is a property of Access forms/reports/controls, but you're giving functions/methods for WinForms. Why would you store Access properties in a table and then use them in WinForms?
David-W-Fenton
2010-08-23 20:10:52