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

VB10

VB10

Great Reads

by Mr. xieguigang 谢桂纲
Object-oriented evaluator of the mathmatics expression
by Sander Rossel
Journey to the center of the .NET Framework with a chance of IL along the way!
by gndzero
A threaded application to identify if system VB6 OCX files are exploitable and generate a batch file to register updated OCX controls.
by DaveyM69
A complete overview and implementation of SNTP from a client perspective.

Latest Articles

by Mr. xieguigang 谢桂纲
Object-oriented evaluator of the mathmatics expression
by Sander Rossel
Journey to the center of the .NET Framework with a chance of IL along the way!
by gndzero
A threaded application to identify if system VB6 OCX files are exploitable and generate a batch file to register updated OCX controls.
by DaveyM69
A complete overview and implementation of SNTP from a client perspective.

All Articles

Sort by Score

VB10 

by David Vanson
A small application to pretty print Arduino code with syntax highlighting
by CorvetteGuru
Backup Stored Procedures in SQL Server.
by Anshul R
Shortcut for Commenting
by Chamila Nishantha
Adding report pages to create one report
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 Anshul R
Converts a given decimal number to fraction
by CorvetteGuru
A few fun Dictionary utiltities.
by Willem Hijlkema
SQL Blob field into picture box
by Doug- VisualBasic VB.NET
A quick Function to get UTC / NTP time
by Gehan Fernando
Custom glass message box for WinForms development.
by Anshul R
A class for N-Digit Arithmetic
by dirigo
Preventing a log file from growing forever
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 cass3000
Read n bytes from the serial port in .net
by evry1falls
Receiving response correctly from pop mail server is the first step on receiving emails to your own email client.
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 Marcello Cantelmo
Function Sqrt(ByVal value As BigInteger) As BigInteger Dim a As BigInteger = BigInteger.One Dim b As BigInteger = (value >> 5) + 8 While (b.CompareTo(a) >= 0) Dim m As BigInteger = BigInteger.Add(a, b) >> 1 If (BigInteger.Multiply(m,...