first of all, C and D are not rows, they are columns

...
based on activecell,
if you want to select just the cells:
Range(ActiveCell, ActiveCell.Offset(1, 0)).Select
if you want to select the entirerow:
Range(ActiveCell, ActiveCell.Offset(1, 0)).EntireRow.Selec