September 16, 2009 in Windows programming
I will show you a two ways how to clean up generic list of dupes.
Say that you have a list of Baby names like following:
Dim MyList As New List(Of String)
MyList.Add(”Simon”)
MyList.Add(”Denholm”)
MyList.Add(”Denis”)
[...]
August 3, 2009 in ADO.NET, Database Programming, Windows programming | Tags: ADO.NET, database
This is a very short example about how to write (insert a new record) to MSAccess database from VB.NET.
I believe that the code is well commented so no additional explanation is needed. Enjoy!
July 23, 2009 in Windows programming | Tags: drive type
Dim Drives() As DriveInfo = DriveInfo.GetDrives()
Dim Builder As New System.Text.StringBuilder
Dim Info As DriveInfo
For Each Info In Drives
[...]