J
John
Hi
Is there a way to downgraded a vs2008 project to vs2005?
Thanks
Regards
Is there a way to downgraded a vs2008 project to vs2005?
Thanks
Regards
Miha Markic said:Out of curiosity, why would you want to downgrade your IDE?
--
Miha Markic [MVP C#, INETA Country Leader for Slovenia]
RightHand .NET consulting & development www.rthand.com
Blog: http://cs.rthand.com/blogs/blog_with_righthand/
John said:Hi
Is there a way to downgraded a vs2008 project to vs2005?
Thanks
Regards
Miha Markic said:Hi John,
Bind like this and you'll be fine:
db = New System.Windows.Forms.Binding("Text", ds, "Clients.ID")
txtID.DataBindings.Add(db)
db = New System.Windows.Forms.Binding("Text", ds, "Clients.Company")
txtCompany.DataBindings.Add(db)
You might also consider binding using the designer ;-)
--
Miha Markic [MVP C#, INETA Country Leader for Slovenia]
RightHand .NET consulting & development www.rthand.com
Blog: http://cs.rthand.com/blogs/blog_with_righthand/
John said:I have done a db app in vs2008 and it is not working. I am just wondering
if there is a bug in vs2008 and that the app may work in vs 2005.
Here is the hugely cut down version of the app to test the problem;
http://www.infovis.biz/TestingVS2008.zip