Hi again,
Finish one problem, cause another from me I'm afraid.
How can I take an variable which takes input of a letter from the user and then compare that to a value?
For example I ask the user to choose from five labels, A-E, and for each of those A-Es you can then choose from a different set of letters. In order to restrict this second choice correctly I need to check what the user has inputed in the first stage. My idea was:
if (firstvariable==A){
...
}
But i fear this is too simplistic. Help much appreciated.