See the vBulletin Tool link in my signature? This is a handy little utililty to convert code to vB forums or HTML, looks like this:
Code:
Option Explicit
'Consts
Public Const NL As String = vbNewLine
Public Const Key_End As Long = vbKeyEscape
Public Const Key_Up As Long = vbKeyUp
Public Const Key_Down As Long = vbKeyDown
Public Const Key_Left As Long = vbKeyLeft
'Types
Public Type tKey
Down As Boolean
Delay As Long
End Type
'Declares
Public Declare Function GetTickCount Lib "kernel32" () As Long
'Variables
Public Version As String
Public Path As String
'Code improved by vBulletin Tool 2.0