Subject Re: COMBOBOX function = "!"
From Eric Wu <ericwuu@hotmail.com>
Date Sun, 02 Aug 2020 14:08:51 -0400
Newsgroups dbase.getting-started
Attachment(s) Unnamed File 1

dBase 12.3 test.wfm attached.  I use function := "!"

- no error pop-up
- it does not convert to upper case.



** END HEADER -- do not remove this line
//
// Generated on 07/31/2020
//
parameter bModal
local f
f = new testForm()
if (bModal)
   f.mdi = false // ensure not MDI
   f.readModal()
else
   f.open()
endif

class testForm of FORM
   set procedure to spellchecker.cc additive
   with (this)
      height = 15.08
      left = 76.0
      top = 13.96
      width = 70.5556
   endwith


   this.COMBOBOX1 = new COMBOBOX(this)
   with (this.COMBOBOX1)
      height = 1.0
      left = 4.6
      top = 3.8
      width = 24
      style = 1        // DropDown
      function := "!"
   endwith



endclass