Important alert: (current site time 5/23/2013 4:14:05 PM EDT)
 

winzip icon

vbScript ColorCoder v3.0

Email
Submitted on: 8/9/2002 9:28:33 PM
By: Lewis E. Moten III  
Level: Intermediate
User Rating: By 3 Users
Compatibility: ASP (Active Server Pages)
Views: 4096
author picture
(About the author)
 
     Upgraded by popular demand for its third generation. Converts vbScript to HTML and colorizes it just like Visual Basic and InterDev. This version has more keywords, runs amazingly faster, and has been packaged into a class. This light weight component was made possible through the use of regular expressions. It returns HTML that is friendly to older browsers with limited use of style. Also offers ability to load a vbScript from the file system into memory. Enjoy!

 
winzip iconDownload code

Note: Due to the size or complexity of this submission, the author has submitted it as a .zip file to shorten your download time. Afterdownloading it, you will need a program like Winzip to decompress it.Virus note:All files are scanned once-a-day by Planet Source Code for viruses, but new viruses come out every day, so no prevention program can catch 100% of them. For your own safety, please:
  1. Re-scan downloaded files using your personal virus checker before using it.
  2. NEVER, EVER run compiled files (.exe's, .ocx's, .dll's etc.)--only run source code.

If you don't have a virus scanner, you can get one at many places on the net including:McAfee.com

 
Terms of Agreement:   
By using this code, you agree to the following terms...   
  1. You may use this code in your own programs (and may compile it into a program and distribute it in compiled format for languages that allow it) freely and with no charge.
  2. You MAY NOT redistribute this code (for example to a web site) without written permission from the original author. Failure to do so is a violation of copyright laws.   
  3. You may link to this code from another website, but ONLY if it is not wrapped in a frame. 
  4. You will abide by any additional copyright restrictions which the author may have placed in the code or code's description.


Other 102 submission(s) by this author

 


Report Bad Submission
Use this form to tell us if this entry should be deleted (i.e contains no code, is a virus, etc.).
This submission should be removed because:

Your Vote

What do you think of this code (in the Intermediate category)?
(The code with your highest vote will win this month's coding contest!)
Excellent  Good  Average  Below Average  Poor (See voting log ...)
 

Other User Comments
8/18/2002 10:19:19 PMwhiteknight

This is great. 5 globes from me.
I did notice that it doesnt indent the code if you have spaces instead of tabs.
I added this line to fix that
lstrHTML = replace(lstrHTML," ","  ")

The reason It looks for 2 spaces and not 1 is because if you look for single space, some of the color formating does not work, like comments and strings.
(If this comment was disrespectful, please report it.)

 
8/28/2002 4:24:14 PMMiroslav Hibler

Another excellent piece from The Master! 5 globes from me. Keep on going!

I added new property - 'TabSize' (default value is 4). I have also changed the last lstrHTML line:

lstrHTML = Replace(lstrHTML, vbTab, "    ")

to

lstrHTML = Replace(lstrHTML, vbTab, Replace(String(TabSize, " "), " ", " "))

to be able to apply different tab size.
(If this comment was disrespectful, please report it.)

 
8/28/2002 4:44:47 PMMiroslav Hibler

Oh, BTW, I'm getting following error:

Error Type:
Microsoft VBScript runtime (0x800A01B6)
Object doesn't support this property or method: 'lobjRegExp.Multiline'
/test/clsColorVBS.asp, line 68

Browser Type:
Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; .NET CLR 1.0.3705)
(If this comment was disrespectful, please report it.)

 

Add Your Feedback
Your feedback will be posted below and an email sent to the author. Please remember that the author was kind enough to share this with you, so any criticisms must be stated politely, or they will be deleted. (For feedback not related to this particular code, please click here instead.)
 

To post feedback, first please login.