project name record_organizer

This commit is contained in:
JenneJ
2015-07-27 15:55:21 +02:00
commit aa525e08b8
351 changed files with 454129 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