Thread: C++ as a form handler?

  1. #1
    Registered User
    Join Date
    May 2004
    Posts
    73

    C++ as a form handler?

    Hey everyone. I'm making an editor for my game, but I want it to be easy to understand and good looking. Unfortunately I could never understand the Win32 applications (with the forms and the toolbars and the windows and the... ugh) and Console apps just dont look very good.

    So I was thinking maybe I could do a html-page based editor, where when I run the program it would open up a html page that's like the main menu, and then the user could navigate around, and they could modify the current level by forms.

    So how do I have forms submit the information to my application, instead of the web? I have a huge amount of experience with php, and I used it a lot of times to handle forms, but I need to do this without the web. How do I do this?

    Thanks

  2. #2
    Registered User
    Join Date
    Sep 2001
    Posts
    4,912
    The only way I can think of to do it would be to set up a CGI server on your computer and have the form sent there, but then you'd need to keep in mind some of the security risks accociated with doing that and deal with them.

    If you ask me, it's an extremely dirty solution to a fairly simple problem. If you're comfortable with whatever API you're using to make the game, why can't you simply design your own GUI for dealing with the forms?

  3. #3
    Registered User
    Join Date
    Apr 2003
    Posts
    2,663
    Last edited by 7stud; 02-19-2005 at 06:11 PM.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Reopening a form ?
    By Aga^^ in forum C# Programming
    Replies: 1
    Last Post: 02-11-2009, 09:28 AM
  2. Calling datas from another form?
    By Aga^^ in forum C# Programming
    Replies: 2
    Last Post: 02-06-2009, 02:17 AM
  3. Accessing main form from functions in other classes
    By pj_martins in forum C++ Programming
    Replies: 1
    Last Post: 11-05-2004, 09:27 AM
  4. My UserControls dissapear off my form
    By zMan in forum C# Programming
    Replies: 2
    Last Post: 09-15-2004, 08:55 AM
  5. Making an MFC form to suit
    By TJJ in forum Windows Programming
    Replies: 1
    Last Post: 04-17-2004, 11:20 AM