Hi guys, how is it possible that my code snippets are not coloured while others do?
I use the tags "code".
example:
Code:Option Explicit
Sub Form_Load()
'Why isn't this coloured????
End Sub
Printable View
Hi guys, how is it possible that my code snippets are not coloured while others do?
I use the tags "code".
example:
Code:Option Explicit
Sub Form_Load()
'Why isn't this coloured????
End Sub
John, James and company took that feature out for some reason....for C++ and languages like it you can use the php tag.. :
or you could use color tags inside the code tagsPHP Code:#include <iostream.h>
int main() {
cout<<"hello"<<endl;
return 0;
}
Take look at the folowing thread:
http://forums.vb-world.net/showthrea...334#post264334
Do you mean that this message was coded with the color tags?
To colorize your code you need a tool, for example my vB Tool (see signature). Or you can edit them by yourself ;)
Ok, that's what I was looking for.
Tx for your reactions.
you can also try the VB browser by Geof_xrx (sorry if I spelt it wrong) you can find it in the VB Web Browser thread in the General section
Well, here's my first code sample using VB Tool. It's great! I'm getting emotional. Sorry.
Code:Private Sub Form_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
Me.CurrentX = Rnd * Me.ScaleWidth
Me.CurrentY = Rnd * Me.ScaleHeight
Me.ForeColor = Rnd * &HFFFFFF
Me.Print "Out of Stack Space" 'Oops!
Form_MouseMove Button, Shift, X, Y
End Sub
'Code improved by vBulletin Tool (Save as...)