Go to Post it's not because the kids look up to him that [Dave] gets picked on, it's really because it's just so much fun. - MissInformation [more]
Home
Go Back   Chief Delphi > Other > Chit-Chat
CD-Media   CD-Spy  
portal register members calendar search Today's Posts Mark Forums Read FAQ rules

 
Reply
 
Thread Tools Rate Thread Display Modes
  #1   Spotlight this post!  
Unread 21-02-2005, 21:06
Amanda Morrison's Avatar Unsung FIRST Hero
Amanda Morrison Amanda Morrison is offline
16 awesome years of FRC!
no team
Team Role: Alumni
 
Join Date: Aug 2002
Rookie Year: 2002
Location: Dallas, TX
Posts: 1,860
Amanda Morrison has a reputation beyond reputeAmanda Morrison has a reputation beyond reputeAmanda Morrison has a reputation beyond reputeAmanda Morrison has a reputation beyond reputeAmanda Morrison has a reputation beyond reputeAmanda Morrison has a reputation beyond reputeAmanda Morrison has a reputation beyond reputeAmanda Morrison has a reputation beyond reputeAmanda Morrison has a reputation beyond reputeAmanda Morrison has a reputation beyond reputeAmanda Morrison has a reputation beyond repute
Re: Teach Genia How to Program and Win a Prize

Yeah, so I'm not a comp sci major anymore, but indeed I was once, many moons ago. I thought I liked technology... I later realized I just loved language in general. However...

I bought this book when I was a senior in high school. It never left my desk at home during that year, and early into college. For just beginning, especially with if/then statements and such, this is an excellent reference. That, or go to a local college's bookstore (in Genia's case, Purdue) and look for the CS courses. Look for low numbered classes, like 101, 102, etc., and look at the books that are required for the class. These are often really good books to look at (and, instead of buying it, you may be able to get some for really cheap on Amazon or from the local library).
__________________
Director of Operations, VEX Robotics, Inc.
Alumna - Teams 71, 1020, 1720, 148
2002 World Champions (Team 71) | 2008 World Champions (Team 148)
Reply With Quote
  #2   Spotlight this post!  
Unread 22-02-2005, 16:09
MisterX's Avatar
MisterX MisterX is offline
Alumni
AKA: Mr. X
FRC #0521
Team Role: College Student
 
Join Date: Feb 2003
Rookie Year: 2000
Location: Around
Posts: 486
MisterX is a splendid one to beholdMisterX is a splendid one to beholdMisterX is a splendid one to beholdMisterX is a splendid one to beholdMisterX is a splendid one to beholdMisterX is a splendid one to behold
Re: Teach Genia How to Program and Win a Prize

Quote:
Originally Posted by DarkJedi613
Besides that you didn't follow anything though. Usually things are named for what they mean, not for just random words. Plus second words are usually capped.
HAHA I guess it just runs in the team. I do the mechanics stuff on the team but being a senior I figured it would be fun to take a programming course so I ended up taking a Java course. Long story short even our teacher can't understand what I am doing but she says as long as it gets you where you wanna go it doesnt matter how many sidesteps I take.

Some of the words I've created Wrecktangle, Wreckedtangle, Advntrr, Xplrr, Byse, UhHuh, UhUh .... and that is just for my greeter.
Reply With Quote
  #3   Spotlight this post!  
Unread 22-02-2005, 20:51
Mike's Avatar
Mike Mike is offline
has common ground with Matt Krass
AKA: Mike Sorrenti
FRC #0237 (Sie-H2O-Bots (See-Hoe-Bots) [T.R.I.B.E.])
Team Role: Programmer
 
Join Date: Dec 2004
Rookie Year: 2004
Location: Watertown, CT
Posts: 1,003
Mike has a reputation beyond reputeMike has a reputation beyond reputeMike has a reputation beyond reputeMike has a reputation beyond reputeMike has a reputation beyond reputeMike has a reputation beyond reputeMike has a reputation beyond reputeMike has a reputation beyond reputeMike has a reputation beyond reputeMike has a reputation beyond reputeMike has a reputation beyond repute
Re: Teach Genia How to Program and Win a Prize

Code:
using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.Data;

namespace First_Project
{
	public class WinForm : System.Windows.Forms.Form
	{
		private System.ComponentModel.Container components = null;
		public System.Windows.Forms.Label lblChalkboard;
		public System.Windows.Forms.Button btnLearn;
		public System.Windows.Forms.Button btnDontLearn;

		public WinForm()
		{
			InitializeComponent();
		}

		protected override void Dispose (bool disposing)
		{
			if (disposing)
			{
				if (components != null)
				{
					components.Dispose();
				}
			}
			base.Dispose(disposing);
		}

		#region Windows Form Designer generated code

		private void InitializeComponent()
		{
			this.lblChalkboard = new System.Windows.Forms.Label();
			this.btnLearn = new System.Windows.Forms.Button();
			this.btnDontLearn = new System.Windows.Forms.Button();
			this.SuspendLayout();

			this.lblChalkboard.Location = new System.Drawing.Point(32, 88);
			this.lblChalkboard.Name = "lblChalkboard";
			this.lblChalkboard.Size = new System.Drawing.Size(240, 48);
			this.lblChalkboard.TabIndex = 0;
			this.lblChalkboard.Text = "Do you want to learn?";

			this.btnLearn.Location = new System.Drawing.Point(32, 176);
			this.btnLearn.Name = "btnLearn";
			this.btnLearn.Size = new System.Drawing.Size(72, 24);
			this.btnLearn.TabIndex = 1;
			this.btnLearn.Text = "Learn";
			this.btnLearn.Click += new System.EventHandler(this.btnLearn_Click);

			this.btnDontLearn.Location = new System.Drawing.Point(128, 176);
			this.btnDontLearn.Name = "btnDontLearn";
			this.btnDontLearn.Size = new System.Drawing.Size(80, 24);
			this.btnDontLearn.TabIndex = 2;
			this.btnDontLearn.Text = "Dont Learn";

			this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
			this.ClientSize = new System.Drawing.Size(292, 273);
			this.Controls.Add(this.btnDontLearn);
			this.Controls.Add(this.btnLearn);
			this.Controls.Add(this.lblChalkboard);
			this.Name = "WinForm";
			this.Text = "Teach Genia OOP C#";
			this.ResumeLayout(false);
		}
		#endregion


		[STAThread]
		static void Main() 
		{
			Application.Run(new WinForm());
		}
		
		private void btnLearn_Click(object sender, System.EventArgs e)
		{
			lblChalkboard.Text = "I'm not a good teacher, go search on google :P";
		}
	
		private void btnDontLearn_Click(object sender, System.EventArgs e)
		{
			lblChalkboard.Text = "Yeah... that was probably a safe bet, huh.";
		}

	}
}
(I started learning C# today...)

EDIT: It's .Text not .text, like I said, I started today.
EDIT 2: This wasn't meant to be taken serious, I highly don't recommend learning C# as your beginning language, however I just found my old PHP tutorials so I'll post those.
__________________
http://www.mikesorrenti.com/

Last edited by Mike : 23-02-2005 at 17:40.
Reply With Quote
Reply


Thread Tools
Display Modes Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump


All times are GMT -5. The time now is 05:14.

The Chief Delphi Forums are sponsored by Innovation First International, Inc.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2017, Jelsoft Enterprises Ltd.
Copyright © Chief Delphi