Hi there,
I am required to select a list of table name using a checkboxes. The selected table name (if check = 1), will be stored in a vector defined as const Bits. How am I supposed to store in a const Bits??? I have been struggling for few days to find out the way.
const Bits tableselected;
For (int j = 0; j < tablenames.size(); j++) {
tableselected[j] == m_ctrlCheckListBox.GetCheck(j);
};
It does not work!!! Please help!! Thanks very much!!!
I am required to select a list of table name using a checkboxes. The selected table name (if check = 1), will be stored in a vector defined as const Bits. How am I supposed to store in a const Bits??? I have been struggling for few days to find out the way.
const Bits tableselected;
For (int j = 0; j < tablenames.size(); j++) {
tableselected[j] == m_ctrlCheckListBox.GetCheck(j);
};
It does not work!!! Please help!! Thanks very much!!!