home *** CD-ROM | disk | FTP | other *** search
/ PC Pro 1995 November / PCPRO_NOV95.ISO / code / db / gotfocus.txt next >
Encoding:
Text File  |  1995-09-08  |  280 b   |  9 lines

  1. * When the control gets the focus, we need to highlight the whole
  2. * text of the current value, and reset the SearchKey property
  3. if this.SelectOnEntry and type("this.value") = "C"
  4.     this.SelStart = 0
  5.     this.SelLength = len(trim(this.DisplayValue))
  6. endif
  7.  
  8. this.SearchKey = ""
  9.