Hi,
I'm wondering how to insert a numerical value in CMSFlexGrid control.
I tried converting the integer into string but it inserts blank .
Code:
........
int nValue = 3;
CString strValue;
strValue.Format("%i",nValue);
m_ctrlFlexGrid->SetTextMatrix(3,1,strValue);
.....
I tried whatever the method present in CMSFlexGrid nothing seems to be working except the insertion of string values.
Could any one rectify the problem.
Thanking you
Regards,
Mohan