Click here to Skip to main content
15,891,597 members
Everything / Programming Languages / Visual Basic 9 (2008)

Visual Basic 9 (2008)

VB9

Great Reads

by CS Rocks
This is a slideshow that works in a Silverlight 3 UserControl.
by CS Rocks
This article demonstrates how to upload a file to a (HTTPS) WebDAV server in VB.NET.
by Abhishek Sur
Gives an introduction of how to create SQL CLR managed objects in SQL server.
by kirkaiya
A very simple, XAML-based month-view calendar that shows appointments, exposes events, and allows dragging appointments in the current month.

Latest Articles

by Richard Atkins
Create a fluid, multi-column, vertically ordered list using nested, floating divs
by Avatar2400
This is a simple class that allows you to have message box with checkbox and other small features.
by icemanind
How to automatically create data access layers and business layers from a Microsoft Access or a SQL Server database
by David Vanson
A progress bar control you can customize

All Articles

Sort by Updated

Visual Basic 9 (2008) 

11 Sep 2016 by Avatar2400
This is a simple class that allows you to have message box with checkbox and other small features.
13 Feb 2014 by Mik Wadstrom
Simple way to use Crystal reports as embedded dynamic printable reports
11 Oct 2013 by heemanshubhalla
How to use Masked Textbox control in .NET
5 Sep 2013 by Mike Meinz
Function returns exe name and command line for the provided filename and extension.
3 Sep 2013 by karenpayne
Using newer conventions of coding in VS2010 and higher
7 Jun 2013 by FatzBomb
How to convert a written number to a numerical value anywhere in a string.
17 Dec 2012 by fadi_sayyed
WPF Compare two brushes IsEquals
25 May 2011 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...
24 May 2011 by Anshul R
Handle code redundancy for many controls in one subroutine
27 Sep 2010 by Willem Hijlkema
SQL Blob field into picture box
14 Jul 2010 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...
14 Jul 2010 by Koshy Panicker John
File Name from Path
21 Jun 2010 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...
21 Jun 2010 by Anshul R
Saving a form's settings
10 Jun 2010 by Anshul R
The Perfect Translation/Conversion of Code
10 Jun 2010 by Anshul R
A class for N-Digit Arithmetic
10 Jun 2010 by Anshul R
Converts a given decimal number to fraction
4 Apr 2010 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...
4 Apr 2010 by Eugene Sichkar
Actually .net 3.5 have non-repeatable collection class - HashSet class and ISet interface.
15 Feb 2010 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...