Hello,
In order to have newly added Row the same cellType as the Existing upper Row you can apply the Cell Type on Column Level instead of applying the CellType to individual Cells.
You may have a look at the below code snippet,
Private Sub Command1_Click()
fpSpread1.MaxRows = fpSpread1.MaxRows + 1
End Sub
Private Sub Form_Load()
fpSpread1.MaxRows = 3
fpSpread1.Col = 2
fpSpread1.CellType = CellTypeComboBox
End Sub
I hope it will help you.
Thanks,
Deepak Sharma
GrapeCity FarPoint