View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Bob Phillips[_6_] Bob Phillips[_6_] is offline
external usenet poster
 
Posts: 11,272
Default set color (vc++)

Don't know vc++, but to set a colour, use

range.Interior.Colorindex=35

the number is the colour pallette index number.

--

HTH

RP
(remove nothere from the email address if mailing direct)


"vavshek" wrote in message
...

Hi,
I have to write an application in vc++ which will be processing excel
files. I already know how to put something in specific cell but I have
no idea how to change a color of the cell. Do you know how to do this?
Thanks for any tips and advices. Below I paste piece of code which I
use to put somthing in the cell A1.

_Application objApp;
_Workbook objBook;
Workbooks objBooks;
Worksheets objSheets;
_Worksheet objSheet;
Range range;
COleVariant VOptional((long)DISP_E_PARAMNOTFOUND, VT_ERROR);

objBooks = objApp.GetWorkbooks();
objBook = objBooks.Add(VOptional);
objSheets = objBook.GetWorksheets();
objSheet = objSheets.GetItem(COleVariant((short)1));

range = objSheet.GetRange(COleVariant("A1"),COleVariant("A 1"));
range.SetValue(COleVariant("aaa"));


--
vavshek
------------------------------------------------------------------------
vavshek's Profile:

http://www.excelforum.com/member.php...o&userid=16518
View this thread: http://www.excelforum.com/showthread...hreadid=313721