home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Interactive Guide / c-cplusplus-interactive-guide.iso / c_ref / csource1 / chint / useful16.hnt < prev    next >
Text File  |  1992-06-16  |  978b  |  27 lines

  1. /*
  2.   How to adjust a calculation, (compute field), that you don't want to
  3.   display on the window.
  4. */
  5.  
  6. Normally a compute expression that has the result displayed on the screen
  7. might look similar to the following :--
  8.  
  9.      strcpy({},${!{3.QUANTITY} * !{3.UNIT_PRICE}})
  10.  
  11. This compute field can be "Adjusted" into totals in a linked parent file.
  12.  
  13. Because there is a pair of curly braces ,"{}", in the expression DataBoss
  14. will ask you to mark the field in a window for display purposes.  So to
  15. suppress the display we must remove the "{}".
  16.  
  17. We can trick DataBoss into generating the correct code for the compiler and
  18. the correct adjust routine if we remove the first part of the expression,
  19. and enclose the remaining code in comment characters.  Note that it is
  20. important to ensure the comment starts at the very begining of the
  21. Key/Compute Expression entry box.
  22.  
  23. The resultant Key/Compute Expression is :--
  24.  
  25.      /*${!{3.QUANTITY} * !{3.UNIT_PRICE}})*/
  26.  
  27.