Click here to Skip to main content
15,904,287 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: error C2143: syntax error : missing ',' before '*' Pin
Member 802752223-Jun-11 5:04
Member 802752223-Jun-11 5:04 
QuestionHow use win32 dll in c# Pin
ashish8patil6-May-09 20:25
ashish8patil6-May-09 20:25 
AnswerRe: How use win32 dll in c# Pin
Cedric Moonen6-May-09 20:32
Cedric Moonen6-May-09 20:32 
GeneralRe: How use win32 dll in c# Pin
ashish8patil6-May-09 20:45
ashish8patil6-May-09 20:45 
AnswerRe: How use win32 dll in c# Pin
_AnsHUMAN_ 6-May-09 21:54
_AnsHUMAN_ 6-May-09 21:54 
QuestionAny way to know the physical sectors that a file occupies? Pin
maishuiking6-May-09 20:20
maishuiking6-May-09 20:20 
Questionhow to maintain version information to project Pin
hemlat6-May-09 20:03
hemlat6-May-09 20:03 
QuestionRe: how to maintain version information to project Pin
Madhu Nair6-May-09 20:21
Madhu Nair6-May-09 20:21 
AnswerRe: how to maintain version information to project Pin
Chandrasekharan P6-May-09 20:33
Chandrasekharan P6-May-09 20:33 
GeneralRe: how to maintain version information to project Pin
hemlat6-May-09 21:13
hemlat6-May-09 21:13 
AnswerRe: how to maintain version information to project Pin
Stuart Dootson6-May-09 20:36
professionalStuart Dootson6-May-09 20:36 
GeneralRe: how to maintain version information to project Pin
hemlat6-May-09 21:10
hemlat6-May-09 21:10 
GeneralRe: how to maintain version information to project Pin
hemlat7-May-09 0:16
hemlat7-May-09 0:16 
Questioncode for getting full file path in dialogbased application Pin
MahaKh6-May-09 19:46
MahaKh6-May-09 19:46 
AnswerRe: code for getting full file path in dialogbased application Pin
«_Superman_»6-May-09 19:55
professional«_Superman_»6-May-09 19:55 
JokeRe: code for getting full file path in dialogbased application Pin
Madhu Nair6-May-09 19:59
Madhu Nair6-May-09 19:59 
AnswerRe: code for getting full file path in dialogbased application Pin
Madhu Nair6-May-09 19:56
Madhu Nair6-May-09 19:56 
AnswerRe: code for getting full file path in dialogbased application Pin
David Crow7-May-09 3:27
David Crow7-May-09 3:27 
QuestionUsing STANDARD C++ within another Projects like C# Pin
cppwxwidgetsss6-May-09 19:39
cppwxwidgetsss6-May-09 19:39 
AnswerRe: Using STANDARD C++ within another Projects like C# Pin
Madhu Nair6-May-09 19:52
Madhu Nair6-May-09 19:52 
AnswerRe: Using STANDARD C++ within another Projects like C# Pin
«_Superman_»6-May-09 19:53
professional«_Superman_»6-May-09 19:53 
GeneralRe: Using STANDARD C++ within another Projects like C# Pin
cppwxwidgetsss6-May-09 21:07
cppwxwidgetsss6-May-09 21:07 
GeneralRe: Using STANDARD C++ within another Projects like C# Pin
«_Superman_»6-May-09 23:21
professional«_Superman_»6-May-09 23:21 
AnswerRe: Using STANDARD C++ within another Projects like C# Pin
Rajesh R Subramanian6-May-09 21:27
professionalRajesh R Subramanian6-May-09 21:27 
QuestionCMFCOutlookbarTabCtrl SetTabBkColor problem Pin
Prasann Mayekar6-May-09 19:21
Prasann Mayekar6-May-09 19:21 
i have used CMFCOutlookbar in my project, and i have added some tabs to it.
every thing works fine except to set the color for the tabs.

i am using SetTabBkColor(int itab, COLORREF clr) function.
but the color is not getting applied at all.
is that i am missing something?

code snippet:

CMFCOutlookbarTabCtrl * pTabCtrl = (CMFCOutlookbarTabCtrl * ) m_wndOutlookbar.GetUnderlyingWindow();
if(pTabCtrl)
{
pTabCtrl->SetTabBkColor(0, RGB(100, 100, 100));
}

although the function returns success, the color is not visible for the tabs.
suggestions are welcome Smile | :)
thanks

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.