MartinLiss
May 1st, 2000, 04:48 AM
When I do UUB "code" inserts and I forget to end it with "/code" I see a blank line between each code line. When I add the "/code" it shows up normally. Here is an example of the former which in VB shows no blank lines.
[code]Public Sub DrawTheSquare(X As Single, Y As Single)
If bDraw Then
Shape1.Top = sglYStart
Shape1.Left = sglXStart
Shape1.Height = Y - sglYStart
Shape1.Width = Shape1.Height
Shape1.Visible = True
End If
End Sub
Is that by design? Also note that without the "/code" UUB, VB's colors do not show up.
[code]Public Sub DrawTheSquare(X As Single, Y As Single)
If bDraw Then
Shape1.Top = sglYStart
Shape1.Left = sglXStart
Shape1.Height = Y - sglYStart
Shape1.Width = Shape1.Height
Shape1.Visible = True
End If
End Sub
Is that by design? Also note that without the "/code" UUB, VB's colors do not show up.