ranking Sort Sort   |   date Sort Sort   |   member Sort Sort
Syndication

3
Date Submitted Sat. Sep. 9th, 2006 11:10 AM
Revision 1
Helper jbplou
Tags Exception | VB.NET
Comments 1 comments
This function returns a stack trace for an exception with all inner exceptions include unless the count of inner exceptions goes over 50. A stack overflow can occur if there is no upper limit for inner exceptions to read from.

Makes use of stringbuilder to build return string in order to yield higher performance.
4
Date Submitted Thu. Sep. 21st, 2006 7:30 AM
Revision 1
Scripter Pio
Tags ArrayList | System.IO | VB.NET
Comments 3 comments
Loading and Saving an ArrayList to/from any given path.
4
Date Submitted Sat. Sep. 9th, 2006 9:22 PM
Revision 1
Helper jbplou
Tags String | VB.NET
Comments 2 comments
This function provides the reverse of a string. It is constructed using string builder because strings in .NET are immutable, while stringbuilders are not. Therefore large strings could be slow to reverse if a regular string was used for the working value that is returned.
5
Date Submitted Thu. Sep. 21st, 2006 7:48 AM
Revision 1
Scripter Pio
Tags math | Percent | VB.NET
Comments 2 comments
Returns a percentage. There are 3 arguments.

1. complete - How much is done?
2. total - How much is there?
3. maxPercentage - Total percentage possible, usually 100.

Simple, yep.
5
Date Submitted Fri. Sep. 8th, 2006 7:05 PM
Revision 1
Helper jbplou
Tags net | VB.NET
Comments 0 comments
Returns a string collection of IP addresses for a passed in domain name.
5
Date Submitted Mon. Sep. 18th, 2006 6:59 PM
Revision 1
Helper jbplou
Tags VB.NET
Comments 0 comments
Counting for loop in VB.NET. Looks easy because it is, but I saw one submitted for PHP.
6
Date Submitted Thu. Sep. 21st, 2006 7:07 AM
Revision 1
Scripter Pio
Tags filesize | System.IO | VB.NET
Comments 1 comments
An all in one function that formats a given file's Size from bytes to gB.
6
Date Submitted Sat. Nov. 18th, 2006 5:40 AM
Revision 1
Scripter Pio
Tags Serialization | VB.NET | XML
Comments 0 comments
I use something similar to this in an application named Shock 3. It provides you with your own Custom settings that can handle your own Custom types as well.
6
Date Submitted Wed. Sep. 6th, 2006 9:22 PM
Revision 1
Helper jbplou
Tags Security | String | VB.NET
Comments 1 comments
This snippet generates a secure hash string using VB.NET
7
Date Submitted Thu. Sep. 21st, 2006 6:47 AM
Revision 1
Scripter Pio
Tags System.Drawing.Color | VB.NET
Comments 3 comments
Have you ever tried to use Color.Blue.ToString and gotten undesired results?
Or have you ever tried to save a color to an INI and not be able to reproduce it the next time around?

The methods below will help you in your conquest of converting the Color structure to HTML (#FF0000) and back to a Color structure again.