home *** CD-ROM | disk | FTP | other *** search
/ BUG 4 / BUGCD1997_05.BIN / aplic / visualj / vjtrial.exe / RCDATA / CABINET / vjdbwiz.awx / TEMPLATE / README.TXT < prev   
Text File  |  1997-01-28  |  2KB  |  101 lines

  1. $$// readme.txt
  2.  
  3.   - Java applet/application '$$AppName$$.java'
  4. $$IF(use_DAO)
  5. $$IF(recordset)
  6.  
  7. $$IF(comments)
  8.   - Source code comments
  9. $$ENDIF
  10. $$IF(todo)
  11.   - 'TODO' comments
  12. $$ENDIF
  13.   - DAO support
  14.  
  15. This applet will:
  16.  
  17.   - Open the '$$recordset$$' table of the '$$fname$$' Access database
  18.   - Create and layout AWT components for the fields you specified
  19.   - Update the AWT components with records from your database
  20.   - Create 'Next', 'Prev', 'First' and 'Last' buttons for browsing
  21. $$IF(readonly)
  22.   - Disable all TextFields and prevent you from modifying the database
  23. $$ELSE
  24.   - Create "Save!" and "Re-read" buttons for modifying the database
  25. $$ENDIF
  26.  
  27. The following fields have been selected:
  28.  
  29. $$BEGINLOOP(fieldcount)
  30. $$IF(include)
  31.   - $$field$$ ($$typedesc$$)
  32. $$ENDIF
  33. $$ENDLOOP       
  34.  
  35. The following fields were not selected and will be commented out
  36. in the source code (in case you change your mind later):
  37.  
  38. $$BEGINLOOP(fieldcount)
  39. $$IF(!include)
  40.   - $$field$$ ($$typedesc$$)
  41. $$ENDIF
  42. $$ENDLOOP       
  43. $$ELSE
  44.  
  45. This applet will NOT run:
  46. $$IF(fname)
  47.   - A valid table in the '$$fname$$' database was not selected.
  48. $$ELSE
  49.   - A valid database was not specified.
  50. $$ENDIF
  51. $$ENDIF
  52. $$ELSE
  53. $$IF(resultset)
  54.  
  55. $$IF(comments)
  56.   - Source code comments
  57. $$ENDIF
  58. $$IF(todo)
  59.   - 'TODO' comments
  60. $$ENDIF
  61.   - RDO support
  62.  
  63. This applet will:
  64.  
  65.   - Open the '$$resultset$$' table of the '$$DSN$$' data source
  66.   - Create and layout AWT components for the fields you specified
  67.   - Update the AWT components with records from your data source
  68.   - Create 'Next', 'Prev', 'First' and 'Last' buttons for browsing
  69. $$IF(readonly)
  70.   - Disable all TextFields and prevent you from modifying the data source
  71. $$ELSE
  72.   - Create "Save!" and "Re-read" buttons for modifying the data source
  73. $$ENDIF
  74.  
  75. The following fields have been selected:
  76.  
  77. $$BEGINLOOP(fieldcount)
  78. $$IF(include)
  79.   - $$field$$ ($$typedesc$$)
  80. $$ENDIF
  81. $$ENDLOOP       
  82.  
  83. The following fields were not selected and will be commented out
  84. in the source code (in case you change your mind later):
  85.  
  86. $$BEGINLOOP(fieldcount)
  87. $$IF(!include)
  88.   - $$field$$ ($$typedesc$$)
  89. $$ENDIF
  90. $$ENDLOOP       
  91. $$ELSE
  92.  
  93. This applet will NOT run:
  94. $$IF(fname)
  95.   - A valid table in the '$$DSN$$' data source was not selected.
  96. $$ELSE
  97.   - A valid database was not specified.
  98. $$ENDIF
  99. $$ENDIF
  100. $$ENDIF
  101.