jj 03.02 Rename RecordOrganiser to RecordOrganizer

This commit is contained in:
JenneJ
2017-02-03 13:44:43 +01:00
parent f3c8415aa6
commit e772d0cd57
547 changed files with 5010 additions and 61153 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