MS 04.09.2015 2

This commit is contained in:
SchreiberM
2015-09-04 08:13:16 +02:00
parent 1a45e34d72
commit 6123cba9d1
322 changed files with 170389 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
Public Class frmRecord_Changes
Private Sub frmRecord_Changes_Load(sender As Object, e As EventArgs) Handles Me.Load
Try
Me.VWPMO_RECORD_CHANGESTableAdapter.Connection.ConnectionString = MyConnectionString
Me.VWPMO_RECORD_CHANGESTableAdapter.Fill(Me.DD_DMSDataSet.VWPMO_RECORD_CHANGES, CURRENT_RECORD_ID)
Catch ex As Exception
MsgBox("Unexpected Error in FormLoad:" & ex.Message, MsgBoxStyle.Critical)
Me.Close()
End Try
End Sub
End Class