To compile the sources you need djgpp v2+ and TWS 1.21. Two changes have to be
made to TWS: to the file "include/tws/edit.h" add the line "friend class Spin;"
after the class declaration:

...
#define EDIT_TYPE_NEG_NUM     4
#define EDIT_TYPE_FLOAT_NUM   5

class EditText:public Window {
friend class Spin;			<--- Add this line
	public:
		EditText(Window *parent,ControlID ID,const char *title,...
...

The other change involves using your favourite hex editor to patch "libtws.a".
Change the byte at 0x26c31 from 0xd1 to 0xd0. This enables the E_BOXUNCHECKED
event to work.

Now just run make.

If you make any changes to the sources, please let me know.

Jason Hood, 16 January, 2001.
