Click here to Skip to main content
15,894,410 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
QuestionRunning an external executable through C++.Net code Pin
Bob X5-Jun-06 7:01
Bob X5-Jun-06 7:01 
AnswerRe: Running an external executable through C++.Net code Pin
toxcct5-Jun-06 7:08
toxcct5-Jun-06 7:08 
GeneralRe: Running an external executable through C++.Net code Pin
Bob X5-Jun-06 7:18
Bob X5-Jun-06 7:18 
GeneralRe: Running an external executable through C++.Net code Pin
toxcct5-Jun-06 7:21
toxcct5-Jun-06 7:21 
GeneralRe: Running an external executable through C++.Net code Pin
Bob X5-Jun-06 7:27
Bob X5-Jun-06 7:27 
GeneralRe: Running an external executable through C++.Net code Pin
toxcct5-Jun-06 7:28
toxcct5-Jun-06 7:28 
GeneralRe: Running an external executable through C++.Net code Pin
Bob X5-Jun-06 7:30
Bob X5-Jun-06 7:30 
GeneralRe: Running an external executable through C++.Net code Pin
ThatsAlok5-Jun-06 22:48
ThatsAlok5-Jun-06 22:48 
GeneralRe: Running an external executable through C++.Net code Pin
toxcct5-Jun-06 22:53
toxcct5-Jun-06 22:53 
GeneralRe: Running an external executable through C++.Net code Pin
ThatsAlok5-Jun-06 22:58
ThatsAlok5-Jun-06 22:58 
GeneralRe: Running an external executable through C++.Net code Pin
toxcct5-Jun-06 23:01
toxcct5-Jun-06 23:01 
AnswerRe: Running an external executable through C++.Net code Pin
David Crow5-Jun-06 7:30
David Crow5-Jun-06 7:30 
GeneralRe: Running an external executable through C++.Net code Pin
toxcct5-Jun-06 7:32
toxcct5-Jun-06 7:32 
GeneralRe: Running an external executable through C++.Net code Pin
David Crow5-Jun-06 7:39
David Crow5-Jun-06 7:39 
GeneralRe: Running an external executable through C++.Net code Pin
toxcct5-Jun-06 7:40
toxcct5-Jun-06 7:40 
GeneralRe: Running an external executable through C++.Net code Pin
Bob X5-Jun-06 7:34
Bob X5-Jun-06 7:34 
GeneralRe: Running an external executable through C++.Net code Pin
toxcct5-Jun-06 7:37
toxcct5-Jun-06 7:37 
QuestionHow can an NT service find out its own name upon Start? Pin
Hillel5-Jun-06 6:18
Hillel5-Jun-06 6:18 
QuestionRe: How can an NT service find out its own name upon Start? Pin
David Crow5-Jun-06 7:30
David Crow5-Jun-06 7:30 
AnswerRe: How can an NT service find out its own name upon Start? Pin
Hillel5-Jun-06 20:10
Hillel5-Jun-06 20:10 
GeneralRe: How can an NT service find out its own name upon Start? Pin
David Crow6-Jun-06 2:54
David Crow6-Jun-06 2:54 
AnswerRe: How can an NT service find out its own name upon Start? Pin
ThatsAlok5-Jun-06 22:42
ThatsAlok5-Jun-06 22:42 
QuestionListControl View Pin
faroo285-Jun-06 5:05
faroo285-Jun-06 5:05 
When i apply font to my listcontrol view the font of the text doesnt change, however only the height of the row changes,
how can i change the font of the text in a listcontrol view
i use following command

LOGFONT lf;
CFont ListControlViewFont;
CFont *pFont = m_LogList->GetFont() ;// GetFont();
pFont->GetLogFont(&lf);

CFontDialog dlg(&lf);

if (dlg.DoModal() == IDOK)
{

dlg.GetCurrentFont(&lf);
ListControlViewFont.DeleteObject();
ListControlViewFont.CreateFontIndirect(&lf);
m_LogList->SetFont(&ListControlViewFont,TRUE);
}

i have tried all ups and down, by not using font dlg, and creating font manual, but nothing works, only row height changes, am i missing something,

Thanks in advance



AnswerRe: ListControl View Pin
led mike5-Jun-06 5:49
led mike5-Jun-06 5:49 
GeneralRe: ListControl View Pin
faroo285-Jun-06 9:14
faroo285-Jun-06 9:14 

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.