hi all,
how i can loop tbl_contact and get the value and i wan insert into foxpro table ?
cList = ActFwk.Contacts.GetContacts(null);
but why when i want get CONTACTWEBADDRESS i cant get it.
for (int i = 0; i < 2; i++){
//MessageBox.Show(cList[i].FirstName + " " + cList[i].LastName);
//MessageBox.Show(cList[i].Company);
DataRow dr = dt.NewRow();dr["FirstName"] = cList[i].FirstName;dr[
"LastName"] = cList[i].LastName;dr["CompanyName"] = cList[i].Company;
dr["Contact"] = cList[i].FullName;
Thanks.