VB2005 to VB .NET2003

OGI

Member
Joined
Mar 20, 2007
Messages
5
Programming Experience
1-3
I need to convert an VB 2005 express edition project into VB .NET 2003 is it possible?
And another question: i wrote a picture viewer to my program with VB 2005 exp. edition, and when i load an animated gif into the picture box, the frames are changing very slowly, or even don't change at all. I don't have such a problems with VB .NET2003. In VB .NET everything works fine with animated gifs. What can I do to fix this problem?
 
I don't think there exist .Net 2.0 to 1.1 converters, reason is .Net 2.0 library is much bigger that .Net 1.1 library, the new .Net 2.0 functionality don't exist for .Net 1.1. In some cases no new features are used in a .Net 2.0 project so there could be a chance for an automatic converter, but I don't think anyone have built a converter for such cases.

About gif animation I've seen it, but don't know any other fixes than to recompile the animation with faster framerate, as vis781 did here http://www.vbdotnetforums.com/showthread.php?t=11849.
 
Thank you for the help John, changing the framerate really solves the problem, this method slows down the whole aplication work progress, but it works!:)
About the converting - your opinion is very logic, I should have known...
BTW, I hope that in future Microsoft shall fix the Picture Box control :rolleyes: ...
 
Back
Top