Hello,
how can i change text box Font Size by code
In Ms Access Report it is very simple :
Me.R_NmSTR.FontSize = (Me.FS)
Me.FS is a column in my table
Thanks
Change component font size by code
Re: Change component font size by code
Hello,
You can use the following code in the BeforePrint event:
Text1.Font = new System.Drawing.Font("Arial", Me.FS);
Thank you.
You can use the following code in the BeforePrint event:
Text1.Font = new System.Drawing.Font("Arial", Me.FS);
Thank you.