Graphics and Visual studio
Hi to all:
I would like to know what is the best plataform for create graphics...
I would like to create an apllication that have movement with graphics...I have a medium knowledge of VS2008, but i don't know if this is the best language to create graphics!
Thanks
Re: Graphics and Visual studio
When you say "movement with graphics" I assume that you mean animation. If you want to include animation in a VB.NET application then you'll probably want to look at WPF and/or Silverlight. As for creating the animation, that's not really a VB.NET issue.
Re: Graphics and Visual studio
Hi:
Thanks for your reply...yes i mean animation, and sory for the wrong issue...
Thanks for your help
Re: Graphics and Visual studio
You might also look into XNA. VS could be used for displaying the animation, but you'd want to create the art in a graphics program. Managed code, such as any of the .NET languages, is not going to create the fastest possible animation, as you would want in many games, because .NET languages don't create the fastest possible executable code. However, you can certainly perform animation in .NET using several different techniques. The simplest is probably GDI+, but it also has the most limitations as far as speed. XNA is faster, and more difficult. It goes on up from there.
Re: Graphics and Visual studio
ok...thanks for information!:)