From: George H. <geo...@us...> - 2012-03-03 09:15:16
|
Update of /cvsroot/win32forth/win32forth/Help/html In directory vz-cvs-4.sog:/tmp/cvs-serv28309/Help/html Modified Files: class-generic.htm dexh-webserver.htm w32f-MoveTo.6.14.htm Log Message: Moved zeroing of windows to save time plus other optimisations and updated help darabase and docs. Index: dexh-webserver.htm =================================================================== RCS file: /cvsroot/win32forth/win32forth/Help/html/dexh-webserver.htm,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** dexh-webserver.htm 17 Nov 2011 21:57:09 -0000 1.1 --- dexh-webserver.htm 3 Mar 2012 09:15:14 -0000 1.2 *************** *** 32,36 **** Assuming that the file p-index.htm is in your webpath. <br /> When you would like to use the websever over the internet. <br /> ! you must replace "localhost" by your IP-adres. <br /> ! The IP-adres can be seen at http://checkip.dyndns.org <br /> </p></body></html> --- 32,36 ---- Assuming that the file p-index.htm is in your webpath. <br /> When you would like to use the websever over the internet. <br /> ! you must replace "localhost" by your IP-adress. <br /> ! The IP-adress can be seen at http://checkip.dyndns.org <br /> </p></body></html> Index: w32f-MoveTo.6.14.htm =================================================================== RCS file: /cvsroot/win32forth/win32forth/Help/html/w32f-MoveTo.6.14.htm,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** w32f-MoveTo.6.14.htm 8 Aug 2009 19:02:55 -0000 1.3 --- w32f-MoveTo.6.14.htm 3 Mar 2012 09:15:14 -0000 1.4 *************** *** 54,58 **** <p>If you had any application specific initializations in your own definitions ! for BOOT or DEFAULT-HELLO , move them in your programm's main. Delete the words you were using as BOOT and DEFAULT-HELLO .</p> --- 54,58 ---- <p>If you had any application specific initializations in your own definitions ! for BOOT or DEFAULT-HELLO , move them in your programm's main word. Delete the words you were using as BOOT and DEFAULT-HELLO .</p> *************** *** 66,70 **** <p>Replace FSAVE and APPLICATION with SAVE : don't forget to give your programm's ! main as the application cfa of SAVE . <br>(TURNKEY remains the same)</p> <p><br>Then :<br></p> --- 66,70 ---- <p>Replace FSAVE and APPLICATION with SAVE : don't forget to give your programm's ! main word as the application cfa of SAVE . <br>(TURNKEY remains the same)</p> <p><br>Then :<br></p> *************** *** 73,77 **** remove any reference to :</p> <pre> NoConsole NoConsoleInImage</pre> ! <p>and remove from your programm's main :</p> <pre> Turnkeyed? if MessageLoop Bye then</pre> --- 73,77 ---- remove any reference to :</p> <pre> NoConsole NoConsoleInImage</pre> ! <p>and remove from your programm's main word:</p> <pre> Turnkeyed? if MessageLoop Bye then</pre> *************** *** 85,89 **** <pre> ConsoleHiddenBoot</pre> <p>before your SAVE or TURNKEY command and do whatever further console ! initialization in your programm's main.</p> --- 85,89 ---- <pre> ConsoleHiddenBoot</pre> <p>before your SAVE or TURNKEY command and do whatever further console ! initialization in your programm's main word.</p> Index: class-generic.htm =================================================================== RCS file: /cvsroot/win32forth/win32forth/Help/html/class-generic.htm,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** class-generic.htm 17 Nov 2011 21:57:09 -0000 1.1 --- class-generic.htm 3 Mar 2012 09:15:14 -0000 1.2 *************** *** 54,59 **** </code></b><br>Set the window handle. Normally handled by the system. </p><p><b><code>:M ZeroWindow: ( -- ) ! </code></b><br>Clear the window handle. Normally handled by the system. At start-up all window ! objects are zeroed automatically. </p><p><b><code>:M DestroyWindow: ( -- ) </code></b><br>Destroy the window. The handle is always zero after executing this method. In a --- 54,59 ---- </code></b><br>Set the window handle. Normally handled by the system. </p><p><b><code>:M ZeroWindow: ( -- ) ! </code></b><br>Clear the window handle. Normally handled by the system. At all window ! handles are zeroed automatically in the image when saving. </p><p><b><code>:M DestroyWindow: ( -- ) </code></b><br>Destroy the window. The handle is always zero after executing this method. In a |