This is what I have so far.
VB Code:
  1. Public Function ProcessSave() _
  2.         As Boolean Implements MDIInterface.ProcessSave
  3.  
  4.         Dim success As Boolean
  5.         Dim aCust As Customer = Nothing
  6.         Try
  7.             aCust.ContactName = txtContact.Text
  8.             aCust.Notes = txtNotes.Text
  9.             aCust.Save()
  10.             Return success
  11.         Catch ex As Exception
  12.             MessageBox.Show(ex.Message & vbNewLine & ex.StackTrace)
  13.         End Try
  14.  
  15.     End Function
I get this error Object reference not set to an instance of an object.

at PTWin.frmCustomer.ProcessSave()
When I try to do a save.