int indexOfField(char* fieldname);

The function indexOfField() returns a number of field with a particular name.
If there is no field with such name, it returns -1.


{
    // your code
    int field = dbf->indexOfField("FIRSTNAME");
    if ( field >= 0 )
    {
        // your code
    }
}