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