home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #16 / NN_1992_16.iso / spool / comp / lang / pascal / 4593 < prev    next >
Encoding:
Text File  |  1992-07-29  |  989 b   |  36 lines

  1. Newsgroups: comp.lang.pascal
  2. Path: sparky!uunet!mcsun!sun4nl!utrcu1!infnews!infnews!waardenb
  3. From: waardenb@cs.utwente.nl (Jerry van Waardenberg)
  4. Subject:  Re: HELP, TVision Questions
  5. Message-ID: <1992Jul29.102758@cs.utwente.nl>
  6. Followup-To: <22862@oasys.dt.navy.mil>
  7. Sender: usenet@cs.utwente.nl
  8. Nntp-Posting-Host: firebird
  9. Organization: University of Twente, Dept. of Computer Science
  10. Date: Wed, 29 Jul 1992 08:27:58 GMT
  11. Lines: 23
  12.  
  13. Another thing:
  14.  
  15. The SetData method of listboxes requires two things: The first has to be a
  16. pointer to a ListBox, the second is a word containing a value for the Focused
  17. variable. The record should look something like this:
  18.  
  19.  
  20. (Dialog contains 2 TInputLine objects and 2 TListBox objects)
  21.  
  22. record
  23.   var1: String;
  24.   var2: String;
  25.   list1: PListBox;
  26.   Focus1: Word;
  27.   list2: PListBox;
  28.   Focus2: Word;
  29. end;
  30.  
  31. (I haven't got the original message anymore, because my system crashed when I was
  32. reading it. However, I hope that the above example is clear.)
  33.  
  34.  
  35. Jerry
  36.