|
-
Sep 24th, 2006, 02:03 PM
#1
Thread Starter
Fanatic Member
[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.
-
Sep 24th, 2006, 02:51 PM
#2
Re: Trouble declareing a binding source
-
Sep 24th, 2006, 03:05 PM
#3
Thread Starter
Fanatic Member
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
-
Sep 24th, 2006, 03:53 PM
#4
Re: Trouble declareing a binding source
 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();
-
Sep 24th, 2006, 03:54 PM
#5
Thread Starter
Fanatic Member
Re: Trouble declareing a binding source
crap i knew it was something easy
sorry about that
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|