Updated to VB 2010 Download FileInformation VB.Net 2010 code here (24 kb) Description If you are looking to get the create date for a file, you can use the code below: Dim fileData As FileInfo = My.Computer.FileSystem.GetFileInfo(strFilePath) Debug.Print(fileData.CreationTime.ToString) I have also created a complete application, which exposes all the file information available in the FileInfo [...]
Updated to VB 2010 Download VB 2010 code here Updated to VB 2008 Download VB 2008 code here VB code example to list printers and then information for a selected printer. Information includes driver name, port name, share name and if the printer is the default. Download VB 2005 Code Here
I wrote a little application to search our Visual Source Safe Database looking for checked out files. The application looks for files checked out for more than 2 weeks, then displays the check out date, user name and file. I can then use this information to contact the user and have them clean up their [...]