MS Referenz W-Laufwerk

This commit is contained in:
Digital Data - Marlon Schreiber
2018-12-19 17:09:23 +01:00
parent 0ccd050d4c
commit fb148c193c
24 changed files with 1364 additions and 819 deletions

View File

@@ -0,0 +1,14 @@
Public Class frmFileInfo
Private Sub frmFileInfo_HandleDestroyed(sender As Object, e As EventArgs) Handles Me.HandleDestroyed
End Sub
Private Sub frmFileInfo_Load(sender As Object, e As EventArgs) Handles Me.Load
Try
txtLocation.Text = CURRENT_DOC_PATH
txtCreation.Text = CURRENT_DOC_CREATION_DATE
Catch ex As Exception
End Try
End Sub
End Class