In your FC installation directory open Component folder and find respective 7Segment component files. after opting the files in notepad, look for the below mentioned code lines(codes within <<< ... >>>) <<<< #ifdef _BOOSTC rom char* cCommonArray = {%q, %r, %s, %t}; rom char* cSegmentArray = {%c, %d, %e, %f, %g, %h, %i, %j, %k, %l,}; #endif #ifdef HI_TECH_C const char cCommonArray[] = {%q, %r, %s, %t}; const char cSegmentArray[] = {%c, %d, %e, %f, %g, %h, %i, %j, %k, %l,}; #endif //get pattern for digit char cSegmentValue = cSegmentArray[Value % 10]; if (DecimalPoint) cSegmentValue = cSegmentValue & %m; >>>>>>>>> and make the following changes; <<<< #ifdef _BOOSTC rom char* cCommonArray = {%q, %r, %s, %t}; rom char* cSegmentArray = {%c, %d, %e, %f, %g, %h, %i, %j, %k, %l, 136, 160, 131, 198, 167, 161, 134, 132, 142, 194, 137, 139, 207, 239, 225, 138, 199, 170, 171, 163, 140, 152, 175, 146, 135, 193, 227, 213, 226, 155, 145, 164, 191, 247, 156,}; #endif #ifdef HI_TECH_C const char cCommonArray[] = {%q, %r, %s, %t}; const char cSegmentArray[] = {%c, %d, %e, %f, %g, %h, %i, %j, %k, %l, 136, 160, 131, 198, 167, 161, 134, 132, 142, 194, 137, 139, 207, 239, 225, 138, 199, 170, 171, 163, 140, 152, 175, 146, 135, 193, 227, 213, 226, 155, 145, 164, 191, 247, 156,}; #endif //get pattern for digit char cSegmentValue = cSegmentArray[Value % 45]; if (DecimalPoint) cSegmentValue = cSegmentValue & %m; >>>> try it out, it should work. regards, Prashant