Forum: C++ Apr 18th, 2006 |
| Replies: 19 Views: 15,018 Hi Lerner,
Thanks! So far I have done the same. My next step is to match the value till couple of columns in a row and if 2 rows are almost similar the value for the row which matches more... |
Forum: C++ Apr 18th, 2006 |
| Replies: 19 Views: 15,018 Hi Dragon,
Thank you. Actually I am able to manipulate the values from the csv file based on the row,column concept. I have now need to manipulate the values based on the header names.... |
Forum: C++ Apr 17th, 2006 |
| Replies: 19 Views: 15,018 This is what my whole code looks like. I am unable to locate the constructor which would help store into my codeText variable(ACE_WString) the value of matrix_points(QString). As you see the paramter... |
Forum: C++ Apr 16th, 2006 |
| Replies: 19 Views: 15,018 Hi Dragon,
Thanks for the reply. It works. Now the problem comes when I assign the matrix_points, which is of type QString to a variable in my application which is of ACE_WString Type, it gives... |
Forum: C++ Apr 13th, 2006 |
| Replies: 19 Views: 15,018 Hi,
Yeah line is character array. This is how the following code looks like. Can you please find the area with mistakes and correct it.
QString matrix_points[6][8];
char line[255];... |
Forum: C++ Apr 13th, 2006 |
| Replies: 19 Views: 15,018 This(following) is the code I am using which is almost same as yours. Certain c functions are not working in VC++ like push_back, substr etc. Still output is always the first field, i.e. ECU ID in... |
Forum: C++ Apr 12th, 2006 |
| Replies: 19 Views: 15,018 Actually yesterday I just copied the content from csv file as it is and therefore looked to be tab/space separated file. Following is the correct format
ECU ID,Function ID,Test ID,Test... |
Forum: C++ Apr 12th, 2006 |
| Replies: 19 Views: 15,018 I am facing a problem while assigning the line value to two dimensional array.
So how should I assign the value of line variable to the two dimensional array as follows
Basically I want to read... |
Forum: C++ Apr 12th, 2006 |
| Replies: 19 Views: 15,018 This is the format
ECU ID Function ID Test ID Test Status Response Type Response Code codeText defaultText
* * * * * * Default Default
ECU_MODEL_KWP_ECCS 4 WS-2-1 * * * 1 Emergency stop... |
Forum: C++ Apr 12th, 2006 |
| Replies: 19 Views: 15,018 Hi Dragon,
This is how the csv file looks
ECU ID FuncID TstID TstStatus ResType ResCode codeTxt deftText
* * * * * * Default Default... |
Forum: C++ Apr 11th, 2006 |
| Replies: 19 Views: 15,018 Hi All,
Following code gives me an error when I use text field in CSV file instead of float or integer fields.
matrix_points[cnt][4] = atoi(line);
May be the problem with above line. Please see... |
Forum: C Apr 11th, 2006 |
| Replies: 36 Views: 19,063 Here length is static. But generally we do not know the length of the field so it sounds a bit not practical. |
Forum: C Apr 11th, 2006 |
| Replies: 36 Views: 19,063 Hi,
I wanted to read text field and atoi is giving a problem. I cannot use
matrix_points[row][col] = atoi(line);
which is good for integer/float values
If I write
matrix_points[row][col] =... |
Forum: Community Introductions Apr 11th, 2006 |
| Replies: 0 Views: 734 Hello Everyone,
This is Narender. I am a new member in your community. Hope all cooperation from you all.
Thanks & Regards,
Narender |