Hi

Is there a way to downgraded a vs2008 project to vs2005?

Thanks

Regards

Re: Downgrading to vs2005 by Scott

Scott
Sun Feb 10 20:54:18 CST 2008

You could create a new 2005 project and then import the code modules into
it, but the 2008 project files themselves (.vbproj/.csproj) are not
downgradeable without serious editing.


"John" <John@nospam.infovis.co.uk> wrote in message
news:uO7McGEbIHA.5160@TK2MSFTNGP05.phx.gbl...
> Hi
>
> Is there a way to downgraded a vs2008 project to vs2005?
>
> Thanks
>
> Regards
>
>
>



Re: Downgrading to vs2005 by Miha

Miha
Mon Feb 11 02:08:42 CST 2008

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" <John@nospam.infovis.co.uk> wrote in message
news:uO7McGEbIHA.5160@TK2MSFTNGP05.phx.gbl...
> Hi
>
> Is there a way to downgraded a vs2008 project to vs2005?
>
> Thanks
>
> Regards
>
>
>


Re: Downgrading to vs2005 by John

John
Mon Feb 11 02:17:27 CST 2008

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

Regards

"Miha Markic" <miha at rthand com> wrote in message
news:u2TrjVIbIHA.1376@TK2MSFTNGP02.phx.gbl...
> 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" <John@nospam.infovis.co.uk> wrote in message
> news:uO7McGEbIHA.5160@TK2MSFTNGP05.phx.gbl...
>> Hi
>>
>> Is there a way to downgraded a vs2008 project to vs2005?
>>
>> Thanks
>>
>> Regards
>>
>>
>>
>



Re: Downgrading to vs2005 by Miha

Miha
Mon Feb 11 03:17:29 CST 2008

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" <John@nospam.infovis.co.uk> wrote in message
news:OXrkKaIbIHA.4180@TK2MSFTNGP06.phx.gbl...
>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


Re: Downgrading to vs2005 by John

John
Mon Feb 11 04:30:51 CST 2008

Hi Miha

Many thanks for that. Fixed my problem.

Thanks again.

Regards

"Miha Markic" <miha at rthand com> wrote in message
news:uWCDE8IbIHA.5276@TK2MSFTNGP06.phx.gbl...
> 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" <John@nospam.infovis.co.uk> wrote in message
> news:OXrkKaIbIHA.4180@TK2MSFTNGP06.phx.gbl...
>>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
>




Re: Downgrading to vs2005 by Benny

Benny
Mon Feb 11 02:49:10 CST 2008

John,

You shold be able to open the csproj files directly in vs2005. It is only
the solution files that have been changed in vs 2008.

Benny


"John" <John@nospam.infovis.co.uk> skrev i en meddelelse
news:uO7McGEbIHA.5160@TK2MSFTNGP05.phx.gbl...
> Hi
>
> Is there a way to downgraded a vs2008 project to vs2005?
>
> Thanks
>
> Regards
>
>
>