[RESOLVED] Trouble declareing a binding source
I am converting a program from vb.net to c#.net and im having a few hickups
im trying create two bindingsource s
but the compiler seems not to like invoicebindingsource = new BindingSource();
even though that was pretty close to an example i found on the msdn
i really appreshate any help you can give me.
Re: Trouble declareing a binding source
Re: Trouble declareing a binding source
invoicebindingsource = new BindingSource();
is what i cant get to work in c#
in vb it would be
Dim invoicebindingsource As New BindingSource
Re: Trouble declareing a binding source
Quote:
Originally Posted by Crash893
invoicebindingsource = new BindingSource();
is what i cant get to work in c#
in vb it would be
Dim invoicebindingsource As New BindingSource
In C#, it should be:
Code:
BindingSource invoicebindingsource = new BindingSource();
Re: Trouble declareing a binding source
crap i knew it was something easy
sorry about that