ListView.AddItem 方法 |
命名空间: XSharp.VO.SDK
1LOCAL cCoachName AS string 2LOCAL oItem AS ListViewItem 3 4DO WHILE !SELF:oCoachesServer:eof 5 cCoachName := Trim( SELF:oCoachesServer:FIELDGET( #LastName ) ) + ", " + ; 6 Trim( SELF:oCoachesServer:FIELDGET( #FirstName ) ) + " " + ; 7 SELF:oCoachesServer:FIELDGET( #MiddleInit ) 8 oItem:SetText( SELF:oCoachesServer:FIELDGET( #Season ), #cSeason ) 9 oItem:SetValue( SELF:oCoachesServer:RecNo, #cCoachName ) 10 oItem:SetText( CoachName, #cCoachName ) 11 oItem:SetText( SELF:oCoachesServer:FIELDGET( #Gender ), #cGender ) 12 oItem:SetText( SELF:oCoachesServer:FIELDGET( #ClubCode ), #cClubCode ) 13 oItem:SetText( SELF:oCoachesServer:FIELDGET( #TeamNr ), #cTeamNr ) 14 oItem:SetText( SELF:oCoachesServer:FIELDGET( #HomePhone ), #cHomePhone ) 15 oItem:SetText( SELF:oCoachesServer:FIELDGET( #WorkPhone ), #cWorkPhone ) 16 17 SELF:oDClvCoaches:AddItem( oItem ) 18 SELF:oCoachesServer:skip() 19ENDDO