VB.net Create file name from date
The following code will produce a unique text file name:
 _____________________________________________________________
 Dim FileTime As Long = DateTime.Now.ToFileTime()Â
 Dim FILENAME = “Log-” & FileTime & “.txt”
 ___________________________________________________________
Usefule for creating a uniqye file name for a program log
























You must be logged in to post a comment.