dialog not in taskbar
-
I have a vc++6 MFC app, i have a main dialog that shows in the taskbar, the dialog can call a login dialog which also shows in the taskbar but i have the main callin another dialog but that doesnt show in the task bar. what is causing this what part of the code actually makes a dialog show in the taskbar? thx
-
I have a vc++6 MFC app, i have a main dialog that shows in the taskbar, the dialog can call a login dialog which also shows in the taskbar but i have the main callin another dialog but that doesnt show in the task bar. what is causing this what part of the code actually makes a dialog show in the taskbar? thx
i just found the line that does it in the .rc file EXSTYLE WS_EX_APPWINDOW i have added the above lines to the correct sections in the .rc file using notepad but how is this ment to be added when using visual studio 6 as the above way im sure isnt the right way
-
I have a vc++6 MFC app, i have a main dialog that shows in the taskbar, the dialog can call a login dialog which also shows in the taskbar but i have the main callin another dialog but that doesnt show in the task bar. what is causing this what part of the code actually makes a dialog show in the taskbar? thx
-
i'm quite sure you're calling that login dialog as modal from the Main dialog's OnInitDialog() function... aren't you ?! :cool:
yes, that is correct, while the other dialog is called once a button is click in the main dialog is this having an effect?