home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #20 / NN_1992_20.iso / spool / comp / database / informix / 1901 < prev    next >
Encoding:
Internet Message Format  |  1992-09-09  |  2.6 KB

  1. Path: sparky!uunet!gatech!emory!saad-emh1.ARMY.MIL
  2. From: maint72@saad-emh1.ARMY.MIL (Michael Gordon)
  3. Newsgroups: comp.databases.informix
  4. Subject: RE: Where's my reverse field?
  5. Message-ID: <9505@emory.mathcs.emory.edu>
  6. Date: 9 Sep 92 18:58:09 GMT
  7. Sender: walt@mathcs.emory.edu
  8. Reply-To: maint72@saad-emh1.ARMY.MIL (Michael Gordon)
  9. Lines: 64
  10. X-Informix-List-ID: <list.1435>
  11.  
  12.  
  13.  
  14.  
  15. FOR: Bruce Momjian (root@candle.uucp)
  16.  
  17.  
  18. > I have a field on a form I have specified as REVERSE, but it just comes
  19. > up blank.  I know Informix knows about the reverse video on my terminal
  20. > because my menus come up reverse.  In fact, I have some Informix
  21. > executable from another person and its fields are reverse.  Does anyone
  22. > know why this is happening?  Below is my form description file.
  23. > I have tried this from the console, from an xterm, and from a vt220. 
  24. > None work.  I am just starting out and this is my first form.
  25. > ------------------------------------------------------------------------
  26. > database formonly
  27. > screen
  28. > {
  29. >                        Summary of Client/Matter Activity
  30.                         
  31.                         
  32. >                As-of Period [a]
  33.                                 
  34. > }
  35. > end
  36. > attributes
  37. > a = formonly.begdt TYPE CHAR, REVERSE;
  38. > end
  39. > instructions
  40. > delimiters "<>";
  41. > end
  42.                                 
  43. > -- 
  44. > Bruce Momjian                      |  830 Blythe Avenue
  45. > root%candle.uucp@bts.com           |  Drexel Hill, Pennsylvania 19026 
  46. >                                    |  (215) 353-9879(w)  853-3000(h)
  47. > Press <CTRL-D> to Return to MENU 
  48.  
  49. Bruce,
  50.  
  51. Your form looks good with the exception of the ATTRIBUTES line a =
  52.  
  53. I don't know about using data field types in the attributes code, try
  54. this modification:
  55.  
  56. a = formonly.begdt, REVERSE; {autonext, upshift, other attributes}
  57. Everything else looks good, and should fly.  Good luck.
  58.  
  59.  
  60.  
  61.  
  62.                     Michael S. Gordon
  63.                     Foreman, Gyroscope Section
  64.                     Avionics Division 
  65.  
  66.  * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
  67.  *                                                                           *
  68.  *  Michael Gordon                           Sacramento Army Depot           *
  69.  *  Foreman, Gyroscope Section               Directorate For Maintenance     *
  70.  *  E-Mail: maint72@saad-emh1.army.mil       Attn: SDSSA-MAV-320             *
  71.  *  DSN:    839-2367                         Michael S. Gordon               *
  72.  *  Comm.:  (916) 388-2367                   Sacramento, CA 96813-5036       *
  73.  *                                                                           *
  74.  * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
  75.  
  76.