Showing posts with label Others. Show all posts
Showing posts with label Others. Show all posts

Thursday, December 19, 2013

Copy and Delete Files using VB .Net



Copy and Delete Files using VB .Net




Environment:


Visual Studio 2005
Visual Basic


Header:


Imports System
Imports System.IO


Copy


Function:
File.Copy(SourceFile, DestinationFile)

Example :     
File.Copy("C:\test.txt", "C:\test.txt")


Delete


Function:
File.Delete(DestinationFile)

Example :  
File.Delete("C:\test.txt")


Copy and Delete Files using VB .Net Example Coding


Dim FileToCopy As String
Dim NewCopy As String

FileToCopy = "C:\test.txt"
NewCopy = "C:\NewTest.txt"

If System.IO.File.Exists(FileToCopy) = True Then
System.IO.File.Copy(FileToCopy, NewCopy)
MsgBox("File Copied")
End If

 




Thursday, April 16, 2009

Full History Of Windows Operating System


Many longtime PC users trace the Microsoft Windows® operating system to the 1990 release of Windows 3.0, the first widely popular version of Windows and the first version of Windows many PC users ever tried. However, Microsoft initially announced the Windows product seven years earlier and released the first version in 1983.






  • The Windows 1.0 product box featured the operating system's new, tiled windows and graphical user interface (GUI).


Full History Of Windows Operating System Lists: