|
-
Feb 24th, 2000, 03:12 AM
#1
how do I post code so it really looks like VB code
(blue keywords etc...)
-
Feb 24th, 2000, 03:35 AM
#2
Fanatic Member
Use UBB code:
[ code ] and [ /code ] without spaces between brackets.
Code:
Dim RetVal As Integer
RetVal = MsgBox("This is a VB Code")
-
Feb 24th, 2000, 03:43 AM
#3
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
-
Feb 24th, 2000, 03:48 AM
#4
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
-
Feb 24th, 2000, 03:51 AM
#5
I don't get it...
why keywords are not blue?
-
Feb 24th, 2000, 04:23 AM
#6
You must use the PrOpEr CaSe.
Private not private (capital P)
Code:
Private Sub 'this should show up correctly
private sub 'while this will not
Good luck!
-
Feb 24th, 2000, 05:23 AM
#7
Frenzied Member
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
-
Feb 24th, 2000, 06:34 AM
#8
Private Sub DoItNow()
For i = 1 to 10
i=i
Next i
Do While i < 100
i=i+1
Loop
End Sub
-
Feb 24th, 2000, 06:35 AM
#9
it should work now
Code:
Private Sub DoItNow()
For i = 1 to 10
i=i
Next i
Do While i < 100
i=i+1
Loop
End Sub
yeeeee
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|