use "system.vl" use "win.vl" use "list.vl" unit vbusiness.entity [ TestingCompanyList is extend list; about TestingCompanyList [ method: [ int onload() { list::onload(); return -1; } int ViewUpdate(param pr,string updateItem,xaserverarg__ arg) { if( updateItem=="del") { int DelRow = this.dw_list.GetRow(); this.dw_list.DeleteRow(DelRow); } return 1; } ] ] ]