Click here to Skip to main content
15,900,815 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
Questionerror message while doing in vc++.net Pin
rajeshatu1913-Sep-06 20:40
rajeshatu1913-Sep-06 20:40 
AnswerRe: error message while doing in vc++.net Pin
Parshant Verma13-Sep-06 20:48
Parshant Verma13-Sep-06 20:48 
GeneralRe: error message while doing in vc++.net Pin
Steve S13-Sep-06 21:32
Steve S13-Sep-06 21:32 
QuestionFetching records in Bulk Pin
Bravoone_200613-Sep-06 20:39
Bravoone_200613-Sep-06 20:39 
AnswerRe: Fetching records in Bulk Pin
_AnsHUMAN_ 13-Sep-06 20:44
_AnsHUMAN_ 13-Sep-06 20:44 
AnswerRe: Fetching records in Bulk Pin
Akt_4_U13-Sep-06 20:47
Akt_4_U13-Sep-06 20:47 
AnswerRe: Fetching records in Bulk Pin
Hamid_RT13-Sep-06 20:54
Hamid_RT13-Sep-06 20:54 
AnswerRe: Fetching records in Bulk Pin
Bravoone_200613-Sep-06 21:03
Bravoone_200613-Sep-06 21:03 
// Field/Param Data
// field data members
long* m_rgID;
LPSTR m_rgName;

// pointers for the lengths
// of the field data
long* m_rgIDLengths;
long* m_rgNameLengths;

// input parameter data member
CString m_strNameParam;

void MultiRowSet::DoBulkFieldExchange( CFieldExchange* pFX )
{
// call the Bulk RFX functions
// for field data members
pFX->SetFieldType( CFieldExchange::outputColumn );
RFX_Long_Bulk( pFX, _T( "[colRecID]" ),
&m_rgID, &m_rgIDLengths );
RFX_Text_Bulk( pFX, _T( "[colName]" ),
&m_rgName, &m_rgNameLengths, 30 );


// call the RFX functions for
// for parameter data members
pFX->SetFieldType( CFieldExchange::inputParam );
RFX_Text( pFX, "NameParam", m_strNameParam );
}



And i want to add CStrings because my field data are :


CString m_listare;
CString m_carte;

how to do this with CStrings ?

RFX_Long_Bulk( pFX, _T( "[colRecID]" ),
&m_rgID, &m_rgIDLengths );
RFX_Text_Bulk( pFX, _T( "[colName]" ),
&m_rgName, &m_rgNameLengths, 30 );



Bravoone

GeneralRe: Fetching records in Bulk Pin
Akt_4_U13-Sep-06 21:35
Akt_4_U13-Sep-06 21:35 
GeneralRe: Fetching records in Bulk Pin
Bravoone_200613-Sep-06 21:47
Bravoone_200613-Sep-06 21:47 
AnswerRe: Fetching records in Bulk Pin
David Crow14-Sep-06 3:18
David Crow14-Sep-06 3:18 
Questionhow to resolve Pin
Parshant Verma13-Sep-06 20:36
Parshant Verma13-Sep-06 20:36 
Questionhow to resolve linking error Pin
Parshant Verma13-Sep-06 20:35
Parshant Verma13-Sep-06 20:35 
AnswerRe: how to resolve linking error Pin
Hamid_RT13-Sep-06 21:21
Hamid_RT13-Sep-06 21:21 
QuestionMultithreaded server application - increase in application memory usage Pin
FFKONG13-Sep-06 20:07
FFKONG13-Sep-06 20:07 
AnswerRe: Multithreaded server application - increase in application memory usage Pin
Mr.Brainley13-Sep-06 23:08
Mr.Brainley13-Sep-06 23:08 
AnswerRe: Multithreaded server application - increase in application memory usage Pin
Mr.Brainley13-Sep-06 23:09
Mr.Brainley13-Sep-06 23:09 
Questionpopping up a window Pin
narayanagvs13-Sep-06 19:51
narayanagvs13-Sep-06 19:51 
AnswerRe: popping up a window Pin
_AnsHUMAN_ 13-Sep-06 20:40
_AnsHUMAN_ 13-Sep-06 20:40 
QuestionHow to subclass a Messgebox Pin
LiYS13-Sep-06 19:36
LiYS13-Sep-06 19:36 
AnswerRe: How to subclass a Messgebox Pin
_AnsHUMAN_ 13-Sep-06 19:39
_AnsHUMAN_ 13-Sep-06 19:39 
GeneralRe: How to subclass a Messgebox Pin
LiYS13-Sep-06 20:03
LiYS13-Sep-06 20:03 
GeneralRe: How to subclass a Messgebox Pin
_AnsHUMAN_ 13-Sep-06 20:12
_AnsHUMAN_ 13-Sep-06 20:12 
GeneralRe: How to subclass a Messgebox Pin
LiYS13-Sep-06 20:08
LiYS13-Sep-06 20:08 
GeneralRe: How to subclass a Messgebox Pin
_AnsHUMAN_ 13-Sep-06 20:15
_AnsHUMAN_ 13-Sep-06 20:15 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.