Hiya! I got some strange problem when i copy code from codes within the VBCode tags here at this site.

I copy it by slecting the code, and when im pasting it, it becomes all in one row like this:

Code:
If folders.Length <> 0 Then                Dim childNode As TreeNode = Nothing                For Each folder In folders                    childNode = New TreeNode(folder)                    parentNode.Nodes.Add(childNode)                    PopulateTreeView(folder, childNode)                Next            End If
So every time i paste my code i have to make a return on every line. And thats a bit tough when there are tons of rows.