Subject invoice report myfieldtex5
From error in case f[pay type].value == CH <pshah6384@gmail.com>
Date Thu, 15 Aug 2019 12:36:45 -0400
Newsgroups dbase.getting-started

   local f
               f = form.streamSource1.rowset.fields
               do case
                  case f["pay type"].value == "CH"  <-------
                       this.text := "Check: "
                       this.text += f["check number"].value
                  case f["pay type"].value == "VI"
                       this.text := "Visa: "
                       this.text += right( trim( f["card number"].value ), 4 )
                  case f["pay type"].value == "MC"
                       this.text := "MasterCard: "
                       this.text += right( trim( f["card number"].value ), 4 )
                  case f["pay type"].value == "DN"
                       this.text := "Discover/Nova: "
                       this.text += right( trim( f["card number"].value ), 4 )
                  otherwise
                       this.text := "Unknown payment type"
               endcase

in my sourcecode editor line 237
2. the order date code block shows error


Warning: Unknown: write failed: No space left on device (28) in Unknown on line 0

Warning: Unknown: Failed to write session data (files). Please verify that the current setting of session.save_path is correct () in Unknown on line 0