Debug help
How do you go about finding out what the problem is?
Try
Me.Aspire2REDataSet1.Transactions.Rows.Add(anyRow)
Me.Validate()
Me.TransactionsBindingSource.EndEdit()
Result =Me.TransactionsTableAdapter.Update(Me.Aspire2REDataSet1.Transactions)
MsgBox(Result &"Line Saved")
Catch exAs Exception
MsgBox(ex)
EndTryI know the program hangs on the line that isBold but don't know what specifically is wrong. I don't get any errors, the program just locks up.
Any ideas how to find out what the problem is?

