View Single Post
  #151 (permalink)  
Old 06-15-2008, 08:08 AM
G_Morgan G_Morgan is offline
Guru
 
Join Date: Oct 2007
Age: 24
Posts: 523
Last Blog:
Just over the next hil...
Credits: 0
Rep Power: 10
G_Morgan is a jewel in the roughG_Morgan is a jewel in the roughG_Morgan is a jewel in the rough
Default Re: Do you write html in notepad?

Quote:
Originally Posted by TcM View Post
Text editors are the way to go, with them you can do the real thing!
It's control that's the big issue for me. I always write my GUI's with a pattern of

GUI (implementing a GUI interface) <-> ControllerClass <-> Backend

This way the raw interactions are in the controller class and can be automatically tested by mocking the GUI interface. The GUI just passes out events to the controller and renders whatever the controller tells it to. It's hard to set this up with code generating visual editors.

A similar principle applies to web development though the specifics differ.

When you use a code generator you are always forced into the methodology of the person who wrote the code generator and it is very rarely what you want.