473,387 Members | 1,721 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,387 software developers and data experts.

Save 2003 as 2002

I need to save a VB.Net 2003 solution as a VB.Net 2002 solution.
I am told a program to do that exists.
I did a quick Google search of the newsgroups and didn't find anything.

Is there such a conversion?

Thanks,
Michael
Nov 20 '05 #1
9 1033
I know you can tell a VS.NET solution what version of the Framework to
target, but I believe that once you've made 2003 code, it must stay 2003
code and can't be "downgraded" to 2002 code.
"Michael" <IN******@aol.com> wrote in message
news:wm*********************@twister.tampabay.rr.c om...
I need to save a VB.Net 2003 solution as a VB.Net 2002 solution.
I am told a program to do that exists.
I did a quick Google search of the newsgroups and didn't find anything.

Is there such a conversion?

Thanks,
Michael

Nov 20 '05 #2
Hi,

There is a free utility VSConvert available at the code project web
site.
http://www.codeproject.com/macro/vsconvert.asp

Ken
-----------------
"Michael" <IN******@aol.com> wrote in message
news:wm*********************@twister.tampabay.rr.c om...
I need to save a VB.Net 2003 solution as a VB.Net 2002 solution.
I am told a program to do that exists.
I did a quick Google search of the newsgroups and didn't find anything.

Is there such a conversion?

Thanks,
Michael

Nov 20 '05 #3
* "Michael" <IN******@aol.com> scripsit:
I need to save a VB.Net 2003 solution as a VB.Net 2002 solution.
I am told a program to do that exists.
I did a quick Google search of the newsgroups and didn't find anything.


There is no built-in way to do that, because parts of the VB.NET 2003
code may not be compatible with the older version. Nevertheless, you
can use this tool to save the project in 2002 format:

<http://www.codeproject.com/macro/vsconvert.asp>

Changes in the .NET Framework:

<http://www.gotdotnet.com/team/changeinfo/default.aspx>

--
Herfried K. Wagner [MVP]
<http://www.mvps.org/dotnet>
Nov 20 '05 #4
OK, Thanks.

"Scott M." <s-***@BADSPAMsnet.net> wrote in message
news:%2****************@TK2MSFTNGP10.phx.gbl...
I know you can tell a VS.NET solution what version of the Framework to
target, but I believe that once you've made 2003 code, it must stay 2003
code and can't be "downgraded" to 2002 code.
"Michael" <IN******@aol.com> wrote in message
news:wm*********************@twister.tampabay.rr.c om...
I need to save a VB.Net 2003 solution as a VB.Net 2002 solution.
I am told a program to do that exists.
I did a quick Google search of the newsgroups and didn't find anything.

Is there such a conversion?

Thanks,
Michael


Nov 20 '05 #5
OK, Thanks, I will give that a try.

Thanks,
Michael

"Ken Tucker [MVP]" <vb***@bellsouth.net> wrote in message
news:OL**************@TK2MSFTNGP09.phx.gbl...
Hi,

There is a free utility VSConvert available at the code project web site.
http://www.codeproject.com/macro/vsconvert.asp

Ken
-----------------
"Michael" <IN******@aol.com> wrote in message
news:wm*********************@twister.tampabay.rr.c om...
I need to save a VB.Net 2003 solution as a VB.Net 2002 solution.
I am told a program to do that exists.
I did a quick Google search of the newsgroups and didn't find anything.

Is there such a conversion?

Thanks,
Michael


Nov 20 '05 #6

"Herfried K. Wagner [MVP]" <hi***************@gmx.at> wrote in message
news:bu************@ID-208219.news.uni-berlin.de...
* "Michael" <IN******@aol.com> scripsit:
I need to save a VB.Net 2003 solution as a VB.Net 2002 solution.
I am told a program to do that exists.
I did a quick Google search of the newsgroups and didn't find anything.


There is no built-in way to do that, because parts of the VB.NET 2003
code may not be compatible with the older version. Nevertheless, you
can use this tool to save the project in 2002 format:

<http://www.codeproject.com/macro/vsconvert.asp>

Changes in the .NET Framework:

<http://www.gotdotnet.com/team/changeinfo/default.aspx>

--
Herfried K. Wagner [MVP]
<http://www.mvps.org/dotnet>


OK, Thanks I will take a look.

Thanks,
Michael
Nov 20 '05 #7

"Herfried K. Wagner [MVP]" <hi***************@gmx.at> wrote in message
news:bu************@ID-208219.news.uni-berlin.de...
* "Michael" <IN******@aol.com> scripsit:
I need to save a VB.Net 2003 solution as a VB.Net 2002 solution.
I am told a program to do that exists.
I did a quick Google search of the newsgroups and didn't find anything.


There is no built-in way to do that, because parts of the VB.NET 2003
code may not be compatible with the older version. Nevertheless, you
can use this tool to save the project in 2002 format:

<http://www.codeproject.com/macro/vsconvert.asp>

Changes in the .NET Framework:

<http://www.gotdotnet.com/team/changeinfo/default.aspx>

--
Herfried K. Wagner [MVP]
<http://www.mvps.org/dotnet>

That made the solution and project so they will open in 2002, but it appears
all it does is change the file header so it thinks it is 2002. It doesn't
convert any of the code. I had a very simple project just a few buttons and
simple code. It piled all the buttons at position 0,0 and had a runtime
error caused by the icon. Because the program was so small, it was easy to
fix those minor errors.
It was better than nothing.
Thanks.
Michael
Nov 20 '05 #8
That made the solution and project so they will open in 2002, but it appears
all it does is change the file header so it thinks it is 2002. It doesn't
convert any of the code. I had a very simple project just a few buttons and
simple code. It piled all the buttons at position 0,0 and had a runtime
error caused by the icon. Because the program was so small, it was easy to
fix those minor errors.
It was better than nothing.
Thanks.
Michael

"Ken Tucker [MVP]" <vb***@bellsouth.net> wrote in message
news:OL**************@TK2MSFTNGP09.phx.gbl...
Hi,

There is a free utility VSConvert available at the code project web site.
http://www.codeproject.com/macro/vsconvert.asp

Ken
-----------------
"Michael" <IN******@aol.com> wrote in message
news:wm*********************@twister.tampabay.rr.c om...
I need to save a VB.Net 2003 solution as a VB.Net 2002 solution.
I am told a program to do that exists.
I did a quick Google search of the newsgroups and didn't find anything.

Is there such a conversion?

Thanks,
Michael


Nov 20 '05 #9
* "Michael" <IN******@aol.com> scripsit:
I need to save a VB.Net 2003 solution as a VB.Net 2002 solution.
I am told a program to do that exists.
I did a quick Google search of the newsgroups and didn't find anything.


There is no built-in way to do that, because parts of the VB.NET 2003
code may not be compatible with the older version. Nevertheless, you
can use this tool to save the project in 2002 format: [...]

That made the solution and project so they will open in 2002, but it appears
all it does is change the file header so it thinks it is 2002. It
doesn't convert any of the code.


As mentioned, conversion isn't always possible because the .NET
Framework has changed/was extended. VS.NET 2002 only supports the .NET
Framework 1.0.

--
Herfried K. Wagner [MVP]
<http://www.mvps.org/dotnet>
Nov 20 '05 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
by: Don Miller | last post by:
I can't seem to find at MS how to detect the 2002 OS vs. 2003 OS for web applications using ASP. This is the only page I could find...
4
by: Daisy | last post by:
Hi, Can I install Visual Studio .NET 2003 on Windows 2000 with Service Pack 4 machine? Or Will I have to upgrade to a newer version of the MS Windows operating system. Please provide the...
7
by: noid droid | last post by:
Hi. A couple of months ago, I ordered the Visual Studio .NET upgrade from Microsoft and installed it. Today, I just realized that I have both the 2002 and 2003 IDEs on my system. Did I do...
3
by: Colin Chudyk | last post by:
Hi, Here is my situation. Can anyone provide insight? I have developed a database in Access 2002. I am planning to distribute it as a split MDE (front) / MDB (back) to be used by the Access...
7
by: Wayne Aprato | last post by:
I have several Access 2003 mde databases. When I try to open them in Access 2002 I get the following error: "The Visual Basic for Applications project in the database is corrupt." ...
10
by: BBFrost | last post by:
We just recently moved one of our major c# apps from VS Net 2002 to VS Net 2003. At first things were looking ok, now problems are starting to appear. So far ... (1) ...
2
by: Herfried K. Wagner [MVP] | last post by:
Hello, There are often questions in this newsgroup posted by VS.NET 2002 users. VS.NET 2002 is "out of date", its successor is VS.NET 2003. There is a special ("cheap") upgrade offer available...
5
by: Tom | last post by:
We currently have a rather large application that is in VB.NET 2002. We have just purchased licenses to the 2003/1.1 Framework version of Visual Studio. What kind of conversion, if any, will we...
4
by: Jon S via DotNetMonster.com | last post by:
Hi all I've taught myself C# 2002 using VS.NET 2002. I've recently brought myself an ASP.NET 2003 book. I will work through this ASP.NET 2003 using VS.NET 2002 and C# 2002. I don't fully...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.