View Single Post
  #8   Report Post  
Posted to microsoft.public.excel.programming
tusya tusya is offline
external usenet poster
 
Posts: 3
Default copy cells with more then 255 chars...

I have worse case. I have to put in my programm value to cell that exids 255 characters. It cuts it. I have no Cell with this value I should write somthing like

string val = " ..."; //more than 255 simbols
((Excel.Range)sheet.Cells[i, j]).Value2 = val; (C#)
WHAT SHOULD I DO ?