That is not how you should be storing the text for a text editor.
D1st0rt - Sun Mar 06, 2005 11:19 am
Post subject:
I think as a starter program you should write a client for a 2d spaceship game
EdTheInvincible - Sun Mar 06, 2005 11:40 am
Post subject:
no, thats the BASIC starter
Mr Ekted - Sun Mar 06, 2005 12:33 pm
Post subject:
GUI is very different from console. In console you write sequential code. You control all the execution of the program. In GUI, you start up your app, but then hand the control over the operating system. You then receive and react to events (messages). This is similar to the way bot plugins work. Anything you need to know from one event to the next must be stored somewhere. This is generically referred to as a state machine.
SuSE - Sun Mar 06, 2005 2:32 pm
Post subject:
make something that works entirely in CLI and has a nice GUI, too
Cyan~Fire - Sun Mar 06, 2005 3:07 pm
Post subject:
Make a C++ Chatnet client. I started one, but never even got close to releasing it.
Solo Ace - Sun Mar 06, 2005 3:12 pm
Post subject:
Hah, same here.