how do I post code so it really looks like VB code
(blue keywords etc...)
Printable View
how do I post code so it really looks like VB code
(blue keywords etc...)
Use UBB code:
[ code ] and [ /code ] without spaces between brackets.
Code:Dim RetVal As Integer
RetVal = MsgBox("This is a VB Code")
this is how I do it (test):
Code:
private sub DoItNow()
for i = 1 to 10
i=i
next i
do while i < 100
i=i+1
loop
end sub
another test
Code:private sub DoItNow()
for i = 1 to 10
i=i
next i
do while i < 100
i=i+1
loop
end sub
I don't get it...
why keywords are not blue?
You must use the PrOpEr CaSe.
Private not private (capital P)
Good luck!Code:Private Sub 'this should show up correctly
private sub 'while this will not
Check out this site:
http://www.vb-world.net/forums/ubbcode.html
for how to manipulate text in the bulletin board.
~seaweed
Edited by seaweed on 02-24-2000 at 06:36 PM
Private Sub DoItNow()
For i = 1 to 10
i=i
Next i
Do While i < 100
i=i+1
Loop
End Sub
it should work now
yeeeeeCode:Private Sub DoItNow()
For i = 1 to 10
i=i
Next i
Do While i < 100
i=i+1
Loop
End Sub