I'm using the following to set certain properties on a SplitForm datasheet:
	
	
	
		
I'm getting: Error 2465 Application-defined or object-defined error) in procedure DataSheetProperties of Module DatabaseOperations
This works fine until I insert the line for the Rowheight.
 
Any ideas on how I can set the row height of the datasheet side of a split form?
 
		Code:
	
	
	Public Function DataSheetProperties(frm As Form)
   
    frm.DatasheetFontName = "Ebrima"
    frm.DatasheetFontHeight = 10
    frm.DatasheetFontWeight = 700
    frm.DataSheetRowHeight = ????
End Function
	I'm getting: Error 2465 Application-defined or object-defined error) in procedure DataSheetProperties of Module DatabaseOperations
This works fine until I insert the line for the Rowheight.
Any ideas on how I can set the row height of the datasheet side of a split form?