Click here to Skip to main content
15,889,281 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: array with both string & float columns PinPopular
«_Superman_»29-May-10 5:01
professional«_Superman_»29-May-10 5:01 
QuestionCTreeCtrl Pin
Sakhalean29-May-10 3:21
Sakhalean29-May-10 3:21 
AnswerRe: CTreeCtrl Pin
Maximilien29-May-10 3:51
Maximilien29-May-10 3:51 
AnswerRe: CTreeCtrl Pin
ThatsAlok30-May-10 20:50
ThatsAlok30-May-10 20:50 
GeneralRe: CTreeCtrl Pin
Sakhalean30-May-10 21:12
Sakhalean30-May-10 21:12 
GeneralRe: CTreeCtrl Pin
ThatsAlok30-May-10 22:15
ThatsAlok30-May-10 22:15 
QuestionForground Window in WinXP and Win7 both Pin
rahul.kulshreshtha28-May-10 21:59
rahul.kulshreshtha28-May-10 21:59 
AnswerRe: Forground Window in WinXP and Win7 both Pin
rahul.kulshreshtha28-May-10 22:15
rahul.kulshreshtha28-May-10 22:15 
This worked Thumbs Up | :thumbsup: . Thanks to http://www.codeproject.com/Messages/3123603/How-to-bring-a-window-to-foreground-on-Vista.aspx[^]. It was in C# but also worked for me in MFC Smile | :)

    Sleep(5000);
::BringWindowToTop(this->m_hWnd);
::SetWindowPos(this->m_hWnd, HWND_TOPMOST,0,0,0,0, SWP_NOMOVE | SWP_NOSIZE);

AnswerRe: Forground Window in WinXP and Win7 both Pin
gothic_coder28-May-10 23:15
gothic_coder28-May-10 23:15 
GeneralRe: Forground Window in WinXP and Win7 both Pin
rahul.kulshreshtha28-May-10 23:17
rahul.kulshreshtha28-May-10 23:17 
GeneralRe: Forground Window in WinXP and Win7 both Pin
gothic_coder28-May-10 23:22
gothic_coder28-May-10 23:22 
GeneralRe: Forground Window in WinXP and Win7 both Pin
rahul.kulshreshtha28-May-10 23:46
rahul.kulshreshtha28-May-10 23:46 
GeneralRe: Forground Window in WinXP and Win7 both Pin
gothic_coder29-May-10 0:04
gothic_coder29-May-10 0:04 
GeneralRe: Forground Window in WinXP and Win7 both Pin
rahul.kulshreshtha29-May-10 0:21
rahul.kulshreshtha29-May-10 0:21 
QuestionInstall IIS Pin
gothic_coder28-May-10 21:39
gothic_coder28-May-10 21:39 
AnswerRe: Install IIS Pin
Hristo-Bojilov29-May-10 0:16
Hristo-Bojilov29-May-10 0:16 
GeneralRe: Install IIS Pin
gothic_coder29-May-10 0:39
gothic_coder29-May-10 0:39 
GeneralRe: Install IIS Pin
Hristo-Bojilov29-May-10 0:47
Hristo-Bojilov29-May-10 0:47 
GeneralRe: Install IIS Pin
gothic_coder29-May-10 0:53
gothic_coder29-May-10 0:53 
GeneralRe: Install IIS Pin
gothic_coder3-Jun-10 0:17
gothic_coder3-Jun-10 0:17 
QuestionWhy C++ doesn't use the parent's class function? (C++ question) Pin
Green Fuze28-May-10 21:10
Green Fuze28-May-10 21:10 
AnswerRe: Why C++ doesn't use the parent's class function? (C++ question) Pin
Green Fuze28-May-10 21:11
Green Fuze28-May-10 21:11 
GeneralRe: Why C++ doesn't use the parent's class function? (C++ question) Pin
eusto28-May-10 23:20
eusto28-May-10 23:20 
GeneralRe: Why C++ doesn't use the parent's class function? (C++ question) Pin
Green Fuze29-May-10 1:33
Green Fuze29-May-10 1:33 
GeneralRe: Why C++ doesn't use the parent's class function? (C++ question) Pin
eusto29-May-10 8:44
eusto29-May-10 8:44 

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.