Lcd Menu Help

Hi

I'm beginner in arduino and I seek for a help on arduino Librairies but I don't find anything...
I need help for my school project.
I use this Shield LCD

http://www.droboticsonline.com/media/catalog/product/cache/1/image/5e06319eda06f020e43594a9c230972d/a/r/arduinolcdkeypadforstore3.jpg

So I want to make a menu, 8 different menu to choices in every of this menu I want to make various rotation of my stepper motor

#include <LiquidCrystal.h>

LiquidCrystal lcd(13, 12, 11, 10, 9, 8);

void setup() {
  lcd.begin(16, 2);
  lcd.print("Welcome, choose your menu");
}

void loop() {
  lcd.setCursor(0, 1);
  lcd.print(millis()/1000);
}

This is how I beginning
Sorry, if i don't speak good english

Have you looked at this?
http://playground.arduino.cc/Code/Menu#.Ux-HbPLnbiM

Do you have a note from your teacher ?

Thanks for you help LarryD. :slight_smile:
My teacher just told me to make a description menu then the program wait 5 seconds then with the pad we can choose the menu 1 or 2 etc..

Did you have his permission to use the Forum ?

LarryD,
I'm trying to run the "Serial Menu" example in the library at the link you gave and I'm getting compile errors.
Attached is the verbose output. Do you have any idea how to fix it ?

Menu compile error.txt (2.47 KB)

In your .h files, comment out the line, and add the line
//#include "WProgram.h"
#include "Arduino.h"

Thanks Larry ! That fixed it. It compiles now.