Best bet:
Google for jobs
See what employers want, and go from there. Frankly its better to actually have a plan of what you want to do as its better to enjoy your work, but if you choose another way thats ok. See what people want, and go for that.
Best bet:
Google for jobs
See what employers want, and go from there. Frankly its better to actually have a plan of what you want to do as its better to enjoy your work, but if you choose another way thats ok. See what people want, and go for that.
That is if people bother to give the rep in the first place lol
Welcome to the forum :)
Is Phrogram actually powerful enough to do major applications?
Hi hkBattousai
Very easy to do that. Here is the code, it will do what you want it to:
private void btStart_Click(object sender, EventArgs e)
{
btStart.Enabled = false;
btStop.Enabled = true;
}
private void btStop_Click(object sender, EventArgs e)
{
btStart.Enabled = true;
btStop.Enabled = false;
}
You could also add this video webcast by Microsoft.
http://www.microsoft.com/events/series/msdnvideodev.mspx
It has tutorials and all the source code to create a 2D and 3D game. Very good for beginners.