Changeset 801 for cprs/branches/tmg-cprs/CPRS-Chart/rCore.pas
- Timestamp:
- Jun 16, 2010, 8:23:07 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
cprs/branches/tmg-cprs/CPRS-Chart/rCore.pas
r793 r801 238 238 //end vwpt 239 239 Result := AnsiReplaceStr(Result,'-',''); //kt 6/9/10 -- fix when SSN passed from server with imbedded dashes 240 //kt start mod 241 if Length(Result) = 8 then begin 242 Result := Copy(Result,1,3) + '-' + Copy(Result,4,2) + '-' + Copy(Result,6,Length(Result)) 243 end; 244 //kt end mod 245 { //kt original block below 240 246 if Length(x) > 8 241 247 then Result := Copy(x,1,3) + '-' + Copy(x,4,2) + '-' + Copy(x,6,Length(x)) 242 248 else Result := x; 249 } 243 250 end; 244 251
Note:
See TracChangeset
for help on using the changeset viewer.