Q: How do I write a linefeed in code to a textbox?
Hi and thank you for answering my question, there is a problem though. I dont get any linefeed out of it, but two black rextangles. ???
Jacob ccc3920@vip.cybercity.dk

A: The answer is simple: did you check the property MultiLine of the textbox? It must be True otherwise you won't have a linefeed. If you are using vb4 you can also use the standaard constant vbCRLF.
So text would be like:
text1.text="blablabla " & vbCRLF & "always the same..." With MultiLine set to FALSE it will look like blablabla||always the same... With MultiLine set to TRUE it will look like blablabla always the same... Return