Please help!!!!
Hi,I have never used java in my life(no really, nothing), and for my computing project at school I have to write a game in java which contains a login page and a score board.I've managed to create username and password login boxes but im really confused about how you can put them together and when the right information is enterd and the login button is clicked,it takes you to the next page.If anyone could help me,please feel free as i have only 2 weeks to program it.
thanks
Nicole Evry
[510 byte] By [
javakid17a] at [2007-9-28 13:47:46]

How are they making you do all this, without them teaching you some java? Also you have to give alittle more information, if its GUI or system.out.println etc.
Hmm.. I guess you should have attended class. You're even too lazy to learn how to participate in this forum. Well, if you ever get over your laziness, do a search for "tips on getting answers to your questions".
JN_a at 2007-7-12 9:57:53 >

I'm sorry if i offended anyone by writing my post, but just to clear up any miss understandings,I am teaching myself the whole advanced higher computing course,including my project, because there is no-one to teach me!I thought maybe someone on here would help me get started so I could get a rough idea what im doing.
Im using a java made simple book,with tells me to write java code and html in notepad and the use MS-DOS to run it. I have managed to write the code for the username and password text fields,which are shown below:
import java.awt.*;
import java.applet.*;
public class User1 extends Applet
{
TextField username;
public void init()
{
add(new Label("Username"));
username=new TextField(15);
add(username);
}
}
import java.awt.*;
import java.applet.*;
public class Password1 extends Applet
{
TextField password;
public void init()
{
add(new Label("Password"));
password=new TextField(15);
add(password);
}
}
I managed to use the book to figure these out but the book doesn't tell me how i can put these together and then when the field have been written in,the login button is pressed and it takes you to the next page.
Again I am sorry if I haven't used this page properly but thats no reason to have a go at my attendance at school, when you obviosly don't have a clue about my life.
I would really appriatiate help on this as pupils from other schools do get taught this subject and I can't do it all by myself!
Thank-you
Nicole Evry
> I'm sorry if i offended anyone by writing my post
no need to apologize, people around here seem to get frustrated fastly around here (the "I don't want to do peoples homework" thingy)
> I am teaching
> myself the whole advanced higher computing
> course,including my project, because there is no-one
> to teach me!
It's a good idea to try to learn things yourself.
> Im using a java made simple book,with tells me to
> write java code and html in notepad and the use MS-DOS
> to run it.
What a bad book that must be. You would be better of with the free version of JCreator, download it from http://www.jcreator.com/
Also get a decent free book: Thinking in Java, download it from
http://www.mindview.net/Books/TIJ/
> when you obviosly don't have a clue about my
> life.
people around here seem to forget that education is not free for everyone.
> I would really appriatiate help on this as pupils from
> other schools do get taught this subject and I can't
> do it all by myself!
What is the exact purpose of the subject ? Is it about Java in general or about basic gui applets ?
Thanks for your help,im downloading those links as we speak :) The advanced higher computing course is made up of 3 parts: computer systems, software development and a practical project. I have finished reading the computer systems and software development parts and passed the relevant tests but I am now struggling to finish this project to get sent to the SQA.
I had to go back to my old primary school and ask them what kind of game they would like me to make. They want a card game about the five senses,where you math the word eg.taste with the relevant picture eg. a tounge. Also as part to the requirements The game must contain a login page and a scoreboard.
I have 2 weeks to program this before I must take it into the school for testing etc.
Although i am struggling,I do really enjoy this part of the course and want to do well in it as I am doing computing science at university this year.
Nicole xx