Category Archives: VB.NET

VB.NET || How To Convert An Array/List/IEnumerable To A DataTable & Convert A DataTable To A List Using VB.NET

The following is a module with functions which demonstrates how to convert an Array/List/IEnumerable to a DataTable, and how to convert a

VB.NET || How To Set & Get The Description Of An Enum Using VB.NET

The following is a module with functions which demonstrates how to set and get the description of an enum using VB.NET. This

VB.NET || How To Iterate & Get The Values Of An Enum Using VB.NET

The following is a module with functions which demonstrates how to iterate and get the values of an enum using VB.NET. This

VB.NET || How To Resize & Rotate Image, Convert Image To Byte Array, Change Image Format, & Fix Image Orientation Using VB.NET

The following is a module with functions which demonstrates how to resize an image, rotate an image to a specific angle, convert

VB.NET || How To Convert A String To Byte Array & Byte Array To String Using VB.NET

The following is a module with functions which demonstrates how to convert a string to a byte array and a byte array

VB.NET || How To Save, Open & Read File As A Byte Array & Memory Stream Using VB.NET

The following is a module with functions which demonstrates how to save, open and read a file as a byte array and

VB.NET || How To Validate An Email Address Using VB.NET

The following is a module with functions which demonstrates how to determine if an email address is valid using VB.NET. This function

VB.NET || How To Validate A Phone Number Using VB.NET

The following is a module with functions which demonstrates how to validate a phone number using VB.NET. Not only does this function

VB.NET || How To Shuffle & Randomize An Array/List/IEnumerable Using VB.NET

The following is a module with functions which demonstrates how to randomize and shuffle the contents of an Array/List/IEnumerable using VB.NET. This

VB.NET || Word Wrap – How To Split A String Text Into lines With Maximum Length

The following is a module with functions which demonstrates how to split text into multiple lines using VB.NET. The following function is

VB.NET || How To Get First/Last Day Of The Week And The First/Last Day Of The Month

The following is a module with functions which demonstrates how to get the first and last day of the week, as well

VB.NET || Roman Numeral Conversion – How To Convert Roman Numeral To Integer & Integer To Roman Numeral

The following is a program with functions which demonstrates how to convert roman numerals to integer, and integers to roman numerals. The