FoxPro:
Select(csrExample)
scan
...
endscan
C#:
foreach (DataRow dr in dsExample.Tables[0].Rows)
{
//dr["Field_Nm"] <- this is how to access a field in a DataRow
...
}
C#:
public DataSet dsExample = null;
Last edited: