This commit is contained in:
parent
feaa8b0d2a
commit
58a3e79f3b
@ -2632,7 +2632,11 @@ namespace VEPROMS.CSLA.Library
|
||||
private string AlphabeticalNumbering(int number)
|
||||
{
|
||||
string retval = string.Empty;
|
||||
if (number > 26) retval += Letter((number - 1) / 26);
|
||||
// originally the code would do double alpha as 'aa', 'ab', 'ac'. This was changed to do 'aa',
|
||||
// 'bb', 'cc'. The Westinghouse work required this and 16bit was tested and it worked the
|
||||
// same way as the Westinghouse requirement. The original code to do 'aa', 'ab' was left here,
|
||||
// commented out, in case a future plant needs it and then should tie it to a format flag.
|
||||
if (number > 26) retval += Letter(1 + ((number - 1) % 26)); // Letter((number - 1) / 26);
|
||||
retval += Letter(1 + ((number - 1) % 26));
|
||||
return retval;
|
||||
}
|
||||
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading…
x
Reference in New Issue
Block a user