K Kare4Care Feb 12, 2009 #1 I am making name badges from Access Report. One name is too long and want to simply reduce font of that 1 badge. Is that possible?
I am making name badges from Access Report. One name is too long and want to simply reduce font of that 1 badge. Is that possible?
F fredg Feb 12, 2009 #2 I am making name badges from Access Report. One name is too long and want to simply reduce font of that 1 badge. Is that possible? Click to expand... How long is too long? Code the Detail Section Format event: If Len(Me![SomeControl])>=30 then Me![SomeControl.FontSize = 8 Else Me![SomeControl].FontSize = 10 End If
I am making name badges from Access Report. One name is too long and want to simply reduce font of that 1 badge. Is that possible? Click to expand... How long is too long? Code the Detail Section Format event: If Len(Me![SomeControl])>=30 then Me![SomeControl.FontSize = 8 Else Me![SomeControl].FontSize = 10 End If