Click here to Skip to main content
15,916,846 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: Moving a line Pin
Russell'17-May-06 3:10
Russell'17-May-06 3:10 
QuestionHow to get the taskbar icon for an invisible main window Pin
Smitha Rao17-May-06 1:52
Smitha Rao17-May-06 1:52 
AnswerRe: How to get the taskbar icon for an invisible main window Pin
Naveen17-May-06 1:58
Naveen17-May-06 1:58 
GeneralRe: How to get the taskbar icon for an invisible main window Pin
NiceNaidu17-May-06 3:00
NiceNaidu17-May-06 3:00 
GeneralRe: How to get the taskbar icon for an invisible main window Pin
Naveen17-May-06 3:19
Naveen17-May-06 3:19 
GeneralRe: How to get the taskbar icon for an invisible main window Pin
Smitha Rao17-May-06 5:05
Smitha Rao17-May-06 5:05 
GeneralRe: How to get the taskbar icon for an invisible main window Pin
Naveen17-May-06 17:14
Naveen17-May-06 17:14 
GeneralRe: How to get the taskbar icon for an invisible main window Pin
Smitha Rao17-May-06 18:25
Smitha Rao17-May-06 18:25 
Yep Naveen.

What you have understood is right. In addition to that I am calling second dialog from the onInitDialog of the main application dialog(Which I don't want to display)
like.

void CMainAppDlg::OnInitDialog()
{
// blah blah blah..
CSecDlg dlg;
dlg.DoModal();
}

So that Second Dialog appears on startup.
So If I write MoveWindow(0,0,0,0) in OnInitDialog of CMainAppDlg
then task bar icon will appear , but even Second dialog also disappers
as its dimension is (0,0,0,0)...And I tried MoveWindow(100,100,100,100)
in OnInitDialog of second dialog But this didn't work as its dimension is
relative to its parents i.e CMainAppDlg in my case. I need to have workaround for this. Frown | :-(


GeneralRe: How to get the taskbar icon for an invisible main window Pin
Naveen17-May-06 18:29
Naveen17-May-06 18:29 
GeneralRe: How to get the taskbar icon for an invisible main window Pin
Smitha Rao25-May-06 7:06
Smitha Rao25-May-06 7:06 
GeneralRe: How to get the taskbar icon for an invisible main window Pin
Smitha Rao17-May-06 7:24
Smitha Rao17-May-06 7:24 
QuestionHow to encrypt folder? Pin
westdawn17-May-06 1:28
westdawn17-May-06 1:28 
QuestionPolymorphic pointer points to what? Pin
G_urr_A17-May-06 1:12
G_urr_A17-May-06 1:12 
AnswerRe: Polymorphic pointer points to what? Pin
Cedric Moonen17-May-06 1:21
Cedric Moonen17-May-06 1:21 
GeneralRe: Polymorphic pointer points to what? Pin
Stephen Hewitt17-May-06 5:06
Stephen Hewitt17-May-06 5:06 
GeneralRe: Polymorphic pointer points to what? Pin
Cedric Moonen17-May-06 5:15
Cedric Moonen17-May-06 5:15 
GeneralRe: Polymorphic pointer points to what? Pin
Stephen Hewitt17-May-06 14:04
Stephen Hewitt17-May-06 14:04 
GeneralRe: Polymorphic pointer points to what? Pin
Cedric Moonen17-May-06 21:26
Cedric Moonen17-May-06 21:26 
GeneralRe: Polymorphic pointer points to what? Pin
Stephen Hewitt18-May-06 0:52
Stephen Hewitt18-May-06 0:52 
GeneralRe: Polymorphic pointer points to what? Pin
Cedric Moonen18-May-06 1:52
Cedric Moonen18-May-06 1:52 
GeneralRe: Polymorphic pointer points to what? Pin
Stephen Hewitt18-May-06 2:42
Stephen Hewitt18-May-06 2:42 
GeneralRe: Polymorphic pointer points to what? Pin
Cedric Moonen18-May-06 2:58
Cedric Moonen18-May-06 2:58 
GeneralRe: Polymorphic pointer points to what? Pin
Stephen Hewitt18-May-06 3:44
Stephen Hewitt18-May-06 3:44 
AnswerRe: Polymorphic pointer points to what? Pin
Sarath C17-May-06 1:23
Sarath C17-May-06 1:23 
GeneralRe: Polymorphic pointer points to what? Pin
Cedric Moonen17-May-06 1:37
Cedric Moonen17-May-06 1:37 

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.