N
None
hi there,
i'm using vs2005 c# with .net cf 2.0 and developing an app for windows
mobile. i am at a point that i have to add a custom property to the
contacts in a contact collection for storing some extra information
about the contacts. however the app always returns "null" for whatever
i've updated to the new field. i've successfully added a field
"Checked" to a contact and the Add method returned true. then i tried
to update the value of Checked with "Yes" but it had no effect.
i want to update Checked so that i can make use of it. can somebody
help?
for (int iIdx = 0; iIdx < ccContactColn.Count; iIdx++)
{
ccContactColn[iIdx].Properties.Add("Checked");
ccContactColn[iIdx].Properties["Checked"] = "Yes"; //
ccContactColn[iIdx].Properties["Checked"] keeps returning null
}
remarks:
ccContactColn.IsReadOnly returns false
ccContactColn.IsFixedSize returns false
thanks
batterhead
i'm using vs2005 c# with .net cf 2.0 and developing an app for windows
mobile. i am at a point that i have to add a custom property to the
contacts in a contact collection for storing some extra information
about the contacts. however the app always returns "null" for whatever
i've updated to the new field. i've successfully added a field
"Checked" to a contact and the Add method returned true. then i tried
to update the value of Checked with "Yes" but it had no effect.
i want to update Checked so that i can make use of it. can somebody
help?
for (int iIdx = 0; iIdx < ccContactColn.Count; iIdx++)
{
ccContactColn[iIdx].Properties.Add("Checked");
ccContactColn[iIdx].Properties["Checked"] = "Yes"; //
ccContactColn[iIdx].Properties["Checked"] keeps returning null
}
remarks:
ccContactColn.IsReadOnly returns false
ccContactColn.IsFixedSize returns false
thanks
batterhead