function W3Button11Click(Self, Sender$7) {
var customers = [{address1:"",address2:"",address3:"",city:"",firstName:"",lastName:"",postCode:""},{address1:"",address2:"",address3:"",city:"",firstName:"",lastName:"",postCode:""},{address1:"",address2:"",address3:"",city:"",firstName:"",lastName:"",postCode:""}];
var i$11 = 0;
customers[(1)-1].firstName = "John";
customers[(1)-1].lastName = "Smith";
customers[(1)-1].address1 = "7 Park Drive";
customers[(1)-1].address2 = "Branston";
customers[(1)-1].address3 = "Grimworth";
customers[(1)-1].city = "Banmore";
customers[(1)-1].postCode = "BNM 1AB";
Copy$TCustomer(customers[(1)-1],customers[(2)-1]);
Copy$TCustomer(customers[(1)-1],customers[(3)-1]);
customers[(2)-1].firstName = "Sarah";
customers[(3)-1].firstName = "Henry";
for(i$11 = 1;i$11<=3;i$11++) {
ShowCustomer(([customers[$Idx(i$11,1,3,"")].firstName,customers[$Idx(i$11,1,3,"")].lastName,customers[$Idx(i$11,1,3,"")].address1,customers[$Idx(i$11,1,3,"")].address2,customers[$Idx(i$11,1,3,"")].address3,customers[$Idx(i$11,1,3,"")].city,customers[$Idx(i$11,1,3,"")].postCode].slice()));
}
}
|