Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
$insert XO_Equates
hXO = XOInstance('NWIND')
 
if hXO then
 
  hQry = QryInstance(hXO)
 
    if hQry then
      flag = QryMethod(hQry, QRY_EXECUTE$, "select companyname from customers order by    companyname")
 
      row = ""
      results = ""
      loop
        flag = QryMethod(hQry, QRY_GETROW$, row)
      while flag
        results<-1> = row
      repeat
 
      QryMethod(hQry, QRY_DESTROY$)
    end
  
  rv = Set_Property (@window : '.COMPANIES', 'LIST', results)
 
  XOMethod(hXO, XO_DESTROY$)
 
end

See Also

XO_EquatesXOInstanceQryMethodSet_Property