ok, here's the deal... part of my app takes user input and turns it into html code... it then takes that, piece by piece, and puts it into an another large textbox where the user can take that code and dump it into another editor...
question is, how do I get code that is put into the "code" box to show up with white space and have certain lines show up on the next line...
right now i'm just using:
VB Code:
frmMain.txtCode = strHead + strFinal + strX, etc, etc..
and this just puts the text back to back to back... how do I make certain pieces appear on the "next line" in the textbox?
OH, and I did try inserting "vbCR" at certain points, but all that does is put the little "return symbol" in and then continues with the next string... ???




Reply With Quote