RwCC 56 Junior Poster

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.

~s.o.s~ commented: Good suggestion. +19
RwCC 56 Junior Poster

That is if people bother to give the rep in the first place lol

Ancient Dragon commented: I'll drink to that! +13
jbennet commented: ill bother to give you rep - jbennet +11
RwCC 56 Junior Poster

Welcome to the forum :)

Is Phrogram actually powerful enough to do major applications?

RwCC 56 Junior Poster

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;
        }
hkBattousai commented: Thanks! +1
RwCC 56 Junior Poster

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.

~s.o.s~ commented: Keep up the good work - ~s.o.s~ +12