Change font on Windows Forms 2.0 Textbox

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a form in Access 2003 and I added a Microsoft Windows 2.0 textbox
control to the form. I need to change the font on that control and I do not
see a way to do that.
 
You shouldn't be using that control...you'll have problems (besides finding
where to change the font). Use the default text box on the toolbox instead.
 
Paul Overway said:
You shouldn't be using that control...you'll have problems (besides finding
where to change the font). Use the default text box on the toolbox instead.

--
Paul Overway
Logico Solutions
http://www.logico-solutions.com





I need to be able to get information line by line from the textbox which works with Microsoft windows forms 2.0 but I can not get it to work with the regular textbox control.
 
When you say line by line, do you mean that carriage returns are embedded in
the text? If so, you just need to parse the text in the default
control....which is fairly easy using the Split function . Trust me, you
don't want to use the Forms 2.0 controls. You'll have reference problems
and/or your app will just crash.
 
tatanata

You should try:
TextBox1.font="Tahoma"
And everything else, like size.
If it will uppercased then you are right.
 
Back
Top