I was trying to display my data in the CListBox like this
checked Time Float(3)
checked Column String
checked Row String
After implementing the switch statement shown below:
int choices = 3;
switch (choices) {
case 1: colTypes == "INTEGER";
case 2: colTypes == "FLOAT";
{
myColumns.Format(_T("%s\t%s"
, column, Types);
}
case 3: colTypes == "STRING";
{
myColumns.Format(_T("%s\t%s(%d)"
, column, Types, scales);
}
}
I got :
checked Time Float(3)
checked Column String(3)
checked Row String(3)
Can anyone please help me on this..... PLEASE. Thank you
checked Time Float(3)
checked Column String
checked Row String
After implementing the switch statement shown below:
int choices = 3;
switch (choices) {
case 1: colTypes == "INTEGER";
case 2: colTypes == "FLOAT";
{
myColumns.Format(_T("%s\t%s"
}
case 3: colTypes == "STRING";
{
myColumns.Format(_T("%s\t%s(%d)"
}
}
I got :
checked Time Float(3)
checked Column String(3)
checked Row String(3)
Can anyone please help me on this..... PLEASE. Thank you