TaskFlow/app/DD_PM_WINDREAM/frmFileInfo.vb
2019-04-16 14:01:35 +02:00

15 lines
444 B
VB.net

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
LOGGER.Error(ex)
End Try
End Sub
End Class