Page 1 of 1

I am going to start coding for Halo 2.

Posted: Tue Jul 28, 2009 1:27 am
by Click16
Well, as you can see by the title of this topic, I am going to start programming for Halo 2.

Honestly, I don't know coding in C#. I only learned a little bit of it. Because I haven't coded in C# for a while, I am probably loosing more knowledge then I am gaining.

But anyways, my program is called "Index" and I will need some help.

I have the UI done. It won't use any MDI Child windows like Entity or H2G, but instead use a single window.
This is what It will look like:

Image
-The text "Form1" Will be removed and replaced.

I also took some dropdown boxes from Entity. This is just so people don't need to be mixing up different UI's

But again, I know nothing about Coding. I really don't even know how I will start. But maybe if you guys can help me out and maybe I can get a tag list going. :XD:

But seriously, I would like to learn how to code for Halo 2. Grimdoomer told me to learn by myself, but really, I don't even know where or how to start.

Thanks.

Re: I am going to start coding for Halo 2.

Posted: Tue Jul 28, 2009 8:35 am
by troymac1ure
I didn't know where to start either, so I just picked up Entity's source and continued... lol

Re: I am going to start coding for Halo 2.

Posted: Tue Jul 28, 2009 2:08 pm
by Click16
Did you have any experience coding? Like, I really don't have much. I am looking at a bunch of Halo 2 Application tutorials. The reason is so that I could understand how to do things and when I should use them.

Re: I am going to start coding for Halo 2.

Posted: Tue Jul 28, 2009 8:02 pm
by troymac1ure
Lots of DOS experience (Turbo Pascal) some VB and even less Delphi. c# is a very nice language and the Visual Studio IDE is very user friendly. All the windows commands is what takes time, but once you figure out what it's looking for it's much easier.

I can give you some help on stuff when you get stuck (if I know it lol). Try making some basic programs to learn or if you want to help update Entity, by all means, contact me...

Re: I am going to start coding for Halo 2.

Posted: Tue Jul 28, 2009 9:10 pm
by Click16
Thanks! As you said, I should start with the basics. So I guess that I will make some simple apps. One thing that I can't seem to figure out is trying to make a form show.

I tried using:

Code: Select all

        private void button1_Click(object sender, EventArgs e)
        {
            Form NewForm = Form2;
            NewForm.Show();
        }
Then I get an error saying "Form 2 is a type but is being used as a variable."

Re: I am going to start coding for Halo 2.

Posted: Tue Jul 28, 2009 9:15 pm
by NotZachary82

Code: Select all

private void button1_Click(object sender, EventArgs e)
        {
            Form2 MyNewFormOrWhatever = new Form2();
            MyNewFormOrWhatever.Show();
        }

Re: I am going to start coding for Halo 2.

Posted: Wed Jul 29, 2009 5:09 pm
by Aumaan Anubis
Form is cooler than Form2.

Re: I am going to start coding for Halo 2.

Posted: Wed Jul 29, 2009 5:16 pm
by NotZachary82
ur gay

Re: I am going to start coding for Halo 2.

Posted: Wed Jul 29, 2009 11:29 pm
by Eaton
I've been programming for a long time now and have even made Xbox 360 game modding tools. And I still don't know enough to start programming Halo apps. You have a a long way to go, but read books, keep practicing, and you will get better in no time. :wink:

Re: I am going to start coding for Halo 2.

Posted: Fri Jul 31, 2009 3:46 pm
by OwnZ joO
My suggestion is read up on object oriented programming, and it will take you a while to really grasp it so be patient. You will understand how C# works a lot better once you do, because it is a language that is meant to be used for mostly object oriented programming.