J
JamesJ
I'm attempting to set the Datasheet font color for my split form(s) in AC
2007
I'm able to set other properties such as DataSheetFontName and
DataSheetBackColor
with no errors but for frm.DatasheetForeColor = RGB(240, 255, 255)
generates the following error:
Runtime Error 2101
The setting you entered isn't valid for this property.
Public Function DataSheetFont(frm As Form)
frm.DatasheetFontName = "Calibri"
frm.DatasheetFontHeight = 12
frm.DatasheetBackColor = RGB(72, 118, 255)
frm.DatasheetAlternateBackColor = RGB(0, 0, 238)
frm.DatasheetGridlinesColor = RGB(202, 225, 255)
frm.DatasheetForeColor = RGB(240, 255, 255)
End Function
2007
I'm able to set other properties such as DataSheetFontName and
DataSheetBackColor
with no errors but for frm.DatasheetForeColor = RGB(240, 255, 255)
generates the following error:
Runtime Error 2101
The setting you entered isn't valid for this property.
Public Function DataSheetFont(frm As Form)
frm.DatasheetFontName = "Calibri"
frm.DatasheetFontHeight = 12
frm.DatasheetBackColor = RGB(72, 118, 255)
frm.DatasheetAlternateBackColor = RGB(0, 0, 238)
frm.DatasheetGridlinesColor = RGB(202, 225, 255)
frm.DatasheetForeColor = RGB(240, 255, 255)
End Function