home *** CD-ROM | disk | FTP | other *** search
- $$// readme.txt
-
- - Java applet/application '$$AppName$$.java'
- $$IF(use_DAO)
- $$IF(recordset)
-
- $$IF(comments)
- - Source code comments
- $$ENDIF
- $$IF(todo)
- - 'TODO' comments
- $$ENDIF
- - DAO support
-
- This applet will:
-
- - Open the '$$recordset$$' table of the '$$fname$$' Access database
- - Create and layout AWT components for the fields you specified
- - Update the AWT components with records from your database
- - Create 'Next', 'Prev', 'First' and 'Last' buttons for browsing
- $$IF(readonly)
- - Disable all TextFields and prevent you from modifying the database
- $$ELSE
- - Create "Save!" and "Re-read" buttons for modifying the database
- $$ENDIF
-
- The following fields have been selected:
-
- $$BEGINLOOP(fieldcount)
- $$IF(include)
- - $$field$$ ($$typedesc$$)
- $$ENDIF
- $$ENDLOOP
-
- The following fields were not selected and will be commented out
- in the source code (in case you change your mind later):
-
- $$BEGINLOOP(fieldcount)
- $$IF(!include)
- - $$field$$ ($$typedesc$$)
- $$ENDIF
- $$ENDLOOP
- $$ELSE
-
- This applet will NOT run:
- $$IF(fname)
- - A valid table in the '$$fname$$' database was not selected.
- $$ELSE
- - A valid database was not specified.
- $$ENDIF
- $$ENDIF
- $$ELSE
- $$IF(resultset)
-
- $$IF(comments)
- - Source code comments
- $$ENDIF
- $$IF(todo)
- - 'TODO' comments
- $$ENDIF
- - RDO support
-
- This applet will:
-
- - Open the '$$resultset$$' table of the '$$DSN$$' data source
- - Create and layout AWT components for the fields you specified
- - Update the AWT components with records from your data source
- - Create 'Next', 'Prev', 'First' and 'Last' buttons for browsing
- $$IF(readonly)
- - Disable all TextFields and prevent you from modifying the data source
- $$ELSE
- - Create "Save!" and "Re-read" buttons for modifying the data source
- $$ENDIF
-
- The following fields have been selected:
-
- $$BEGINLOOP(fieldcount)
- $$IF(include)
- - $$field$$ ($$typedesc$$)
- $$ENDIF
- $$ENDLOOP
-
- The following fields were not selected and will be commented out
- in the source code (in case you change your mind later):
-
- $$BEGINLOOP(fieldcount)
- $$IF(!include)
- - $$field$$ ($$typedesc$$)
- $$ENDIF
- $$ENDLOOP
- $$ELSE
-
- This applet will NOT run:
- $$IF(fname)
- - A valid table in the '$$DSN$$' data source was not selected.
- $$ELSE
- - A valid database was not specified.
- $$ENDIF
- $$ENDIF
- $$ENDIF
-