home *** CD-ROM | disk | FTP | other *** search
/ BUG 4 / BUGCD1997_05.BIN / aplic / visualj / vjtrial.exe / RCDATA / CABINET / vjdbwiz.awx / TEMPLATE / CONFIRM.INF < prev    next >
Text File  |  1997-01-28  |  3KB  |  104 lines

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