MSAccess Datatype for Windows.System.Colors
What is the datatype fo开发者_如何学Cr Color
in MSAccess?
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.
精彩评论