Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Everything / Languages / VB9

VB9

VB9

Great Reads

by Mr.PoorEnglish
Compute "SnapValues" with minimum of fractional digits, useful in autoscaling Chart-control
by Dazdarevic Edin
A .NET component that simplifies tracking of system's idle time.
by Izzet Kerem Kusmezer
With this tool you can download whole .NET Framework source code at once, and enjoy offline browsing. With it, you can have whole the source code without any Visual Studio product installed
by David Polomis
Loads a Targa image file into a Bitmap using nothing but .NET code.

Latest Articles

by Mr.PoorEnglish
Compute "SnapValues" with minimum of fractional digits, useful in autoscaling Chart-control
by Dazdarevic Edin
A .NET component that simplifies tracking of system's idle time.
by Izzet Kerem Kusmezer
With this tool you can download whole .NET Framework source code at once, and enjoy offline browsing. With it, you can have whole the source code without any Visual Studio product installed
by David Polomis
Loads a Targa image file into a Bitmap using nothing but .NET code.

All Articles

Sort by Score

VB9 

by yozi
Sometimes you need to change objects type to another type.Convert.ChangeType does this job for you. But when you use Nullable(Of T), this function throws an exception.You can use the following function to change type(including Nullable types) safely... Private Function CType2(ByVal...
by Anshul R
The Perfect Translation/Conversion of Code
by FatzBomb
How to convert a written number to a numerical value anywhere in a string.
by Mik Wadstrom
Simple way to use Crystal reports as embedded dynamic printable reports
by Avatar2400
This is a simple class that allows you to have message box with checkbox and other small features.
by Anshul R
Converts a given decimal number to fraction
by Willem Hijlkema
SQL Blob field into picture box
by Mike Meinz
Function returns exe name and command line for the provided filename and extension.
by Koshy Panicker John
File Name from Path
by Simon_Whale
imports system.iodim Filename as string = "C:\Users\Sony\Desktop\Readme.txt"dim FileInfo as new fileinfo(filename)'this gets the filename and extension e.g. readme.txtmessagebox.show (Fileinfo.name)'this gets the extensionmessagebox.show (Fileinfo.extension)'this gets the...
by Anshul R
A class for N-Digit Arithmetic
by Anshul R
Handle code redundancy for many controls in one subroutine
by Simon_Whale
why not just create a custom handler for all the textboxes? addhandler textbox1.textchanged, addressof textchangedhandler addhandler textbox2.textchanged, addressof textchangedhandler .... 'add additional textbox handlers .... addhandler textbox7.textchanged, addressof...
by karenpayne
Using newer conventions of coding in VS2010 and higher
by Anthony Daly
Download source - 30 KBDownload library - 5 KBIntroductionThis set of Non-Repeatable Collections has a very simple concept - to only allow one item of each type to be added, meaning that you cannot have duplicate items in the collection.BackgroundAlthough the .NET Framework...
by Eugene Sichkar
Actually .net 3.5 have non-repeatable collection class - HashSet class and ISet interface.
by Anshul R
Saving a form's settings
by William Winner
Here's an alternate: a custom class that is serializable to store all of that in instead of a single string that you'd then have to parse.Or store it all in an XML file. There are plenty of object-oriented ways to go about this that would be much more readable than just storing it all in a...
by heemanshubhalla
How to use Masked Textbox control in .NET
by fadi_sayyed
WPF Compare two brushes IsEquals