home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1993 #3 / NN_1993_3.iso / spool / comp / sys / next / programm / 8321 < prev    next >
Encoding:
Internet Message Format  |  1993-01-27  |  1.4 KB

  1. Path: sparky!uunet!tcsi.com!iat.holonet.net!news.cerf.net!usc!zaphod.mps.ohio-state.edu!caen!caen!usenet
  2. From: dcheslow@impact.flint.umich.edu (David A. Cheslow)
  3. Newsgroups: comp.sys.next.programmer
  4. Subject: Re: How do I tell a text Form to select the next text cell?
  5. Date: 26 Jan 1993 19:34:48 GMT
  6. Organization: University of Michigan Engineering, Ann Arbor
  7. Lines: 15
  8. Distribution: usa
  9. Message-ID: <1k43ooINN192@srvr1.engin.umich.edu>
  10. References: <81894@hydra.gatech.EDU>
  11. NNTP-Posting-Host: impact.flint.umich.edu
  12.  
  13. I ran into this problem a long time ago.  The problem that you are  
  14. experiencing is that a Form (sender) does not have a nextText.  A Form is  
  15. a subclass of Matrix.  It is the cells of the Matrix which have nextText  
  16. connections.  You can find the actual field where editing has occured by  
  17. sending [sender selectedCell], and you can then ask the resulting object  
  18. for its nextTeXT.  Alternatively (and perhaps more transparently), you can  
  19. simply send [sender selectCellAt:[sender selectedRow]+1 :0]
  20.  
  21. --
  22. ===============================================================
  23. *NOT* an official document of the University of Michigan-Flint
  24. ===============================================================
  25.  David A. Cheslow               dcheslow@impact.flint.umich.edu
  26.  School of Management, 344 CROB           Phone: (313) 762-3309
  27.  University of Michigan - Flint             Fax: (313) 762-3687  
  28.