Click here to Skip to main content
15,888,610 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
My application has real time sync with the outlook. I would like to set the color category of the particular appointment in Outlook. The appointment color will be chosen in the application. And it is being shown in the small box. How to apply the same color in the outlook appointment from my application? Am using the following code to paint the small box.


hDC = GetDC(hCtrl);
GetClientRect (hCtrl, &rect);

lbrush.lbStyle = BS_SOLID;
lbrush.lbColor = (tempact.color) ? tempact.color : GetProjectColor(project);
lbrush.lbHatch = HS_VERTICAL;

hOldBrush = (HBRUSH)SelectObject(hDC, CreateBrushIndirect(&lbrush));
Posted
Comments
nv3 3-Aug-12 8:15am    
That same question was just asked a day ago, perhaps by yourself under a different account name? It doesn't help to repeat that.

Is your problem in the realm of VC6 or Outlook? Please update the tags accordingly.

Are you trying to set the category color in Outlook manually or programatically?
Gokulnath007 3-Aug-12 10:03am    
My account was needed my email verification. So they provided me an alternate account. So I am not trying to blame you in repeating the same question.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900