Change font on Windows Forms 2.0 Textbox

D

Deb Taylor

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.
 
P

Paul Overway

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.
 
D

Deb Taylor

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.
 
P

Paul Overway

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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top