calender dayrender change font size in code

cpopham

Junior Contributor
Joined
Feb 18, 2004
Messages
273
Using vb how do you dynamically change the font size? I have tried e.cell.font, but can not come up with a way to change th font size.

Anyone have any ideas?

Thanks, Chester
 
Try e.Cell.Controls(0).Font. You have to change the font of the link button thats inside the cell. If Controls(0) doesn't work, try Controls(1)
 
Back
Top