I keep getting an error on the line below saying type frmAddnote has no default constructor.
However it's just a normal for it does have a constructor and I aint deleted nowt. If I close VS then open it again the error goes and the app compiles and runs fine, it's only when I open the form in design view that the error appears again?
VB Code:
If (objAddNote Is Nothing OrElse objAddNote.IsDisposed) And (objAgent.IfrmNewCall Is Nothing OrElse objAgent.IfrmNewCall.IsDisposed) Then objAddNote = [U]New frmAddNote[/U] objAddNote.Show() Me.btnDial.Enabled = False Me.btnNote.Enabled = False





Reply With Quote