Advertisement
If you have a new account but are having problems posting or verifying your account, please email us on hello@boards.ie for help. Thanks :)
Hello all! Please ensure that you are posting a new thread or question in the appropriate forum. The Feedback forum is overwhelmed with questions that are having to be moved elsewhere. If you need help to verify your account contact hello@boards.ie

[C] Resources for making a good Menu Programme

Options
  • 03-06-2004 11:34am
    #1
    Registered Users Posts: 10,501 ✭✭✭✭


    I'm looking for any guides on making a good menu program in C.

    Can anyone point me in the direction for learning:
    mysql interaction
    executing and monitoring system commands
    color manipulation

    I'd also love to see some tutorials on how to create aesthetic bits like say a border around the menu etc...


Comments

  • Registered Users Posts: 10,501 ✭✭✭✭Slydice


    apologies for calling it "programme" :o :dunno: :rolleyes:

    blame 6 hours sleep etc..


  • Registered Users Posts: 1,011 ✭✭✭carrolls


    Visual Studio 2003 does the trick for me in C# or C++.
    Also try www.developer.com for advice on adding nice colours to your menus.


  • Registered Users Posts: 10,501 ✭✭✭✭Slydice


    Originally posted by carrolls
    Visual Studio 2003 does the trick for me in C# or C++.
    Also try www.developer.com for advice on adding nice colours to your menus.

    Ok, I haven't made myself clear on this.

    This project isn't for any microsoft OS or a windowing system.

    I need these resources for use in a Linux Debian Shell Enviroment.

    Can anyone recommend me stuff now?


  • Registered Users Posts: 1,268 ✭✭✭hostyle


    Have you looked into curses?


  • Registered Users Posts: 10,501 ✭✭✭✭Slydice


    no, I'll go google em now...

    can you give me any info on them?


  • Advertisement
  • Registered Users Posts: 10,501 ✭✭✭✭Slydice


    I'm messing about with ncurses now, thanks for the pointer...

    anyone else have any tips on the rest of the stuff?


  • Registered Users Posts: 1,268 ✭✭✭hostyle


    I know next to nothing regards using C / curses / ncurses but:

    > mysql interaction

    What do you mean exactly? It comes with good documentation.

    > executing and monitoring system commands

    Again, this seems rather vague to me, but I;m not a C head, so I may be missing your intention.

    > color manipulation

    Within the program? Should be in the ncurses docs. I know every *nix shell has its own colour documentation.

    Sorry if thats no help :/


  • Registered Users Posts: 10,501 ✭✭✭✭Slydice


    The last bit helped
    Originally posted by hostyle
    I know next to nothing regards using C / curses / ncurses but:

    > mysql interaction

    What do you mean exactly? It comes with good documentation.

    > executing and monitoring system commands

    Again, this seems rather vague to me, but I;m not a C head, so I may be missing your intention.

    mysql... as in what header files do i need and any docs about their functions

    systems commands... I'd want to run commands and know when they are finished so my program can take back over :)


  • Registered Users Posts: 10,501 ✭✭✭✭Slydice


    Right.... how about just tips on header files which allow interaction with mysql?


  • Registered Users Posts: 10,501 ✭✭✭✭Slydice


    I've found out that you just have to include the mysql.h header file which comes with the mysql server to access the mysql functions :)

    (just so you guys know)

    I haven't tested this yet though.


  • Advertisement
Advertisement