
Using CRecordSet's MoveNext and IsEOF
What error message are you getting? IsEOF is a function, not a variable.
Jon
Quote:
>I am porting a 16 Bit app to 32 Bit and the following code doesn't work
>any more...
>while(!m_pSet->IsEOF)
>{
> m_list_users.AddString(m_pSet->m_name);
> m_pSet->MoveNext();
>}
>Mike Long