CodePaste Logo
New Snippet New Snippet Recent Snippets Recent Snippets My Snippets My Snippets Web Code Search Snippets Search
Sign inor Register
Format:
Recent snippets matching tags of Excel BCB
C++
view plaincopy to clipboardprint?
  AnsiString GetExcelRangeCode(int row, int col)
  {
  AnsiString asExcelCode = "" ;
  while ( col ) {
  asExcelCode = (AnsiString)(char)('A'+(col-1)%26) + asExcelCode ;
  col = (col-1)/26 ;
  }
  return asExcelCode ;//+IntToStr(row) ;
  }
by Yuzhen Situ   August 11, 2009 @ 10:07pm
Tags: Excel BCB
268 Views
no comments
 
brought to you by:
West Wind Techologies



If you find this site useful and use it frequently please consider making a donation to support this free service.
Donate