Does anyone know how to change the standard view in the MDI project with a Property sheet (wizard style)? :confused:
d_kilshtein
Posts
-
Property sheet in MDI project -
Using MFC with win32Is there a way to use MFC support in Win32 application? (especially Property Sheet class).
-
find out which ports are open on the local machineIs there a way to find out which ports are open on the local machine and is there a way of opening and closing ports?
-
find out which ports are open on the local machineIs there a way to find out which ports are open on the local machine and is there a way of opening and closing ports?
-
ADSL internet connectionHow can I establish an internet connection? (i'm connected with ADSL modem) do i use the Wininet.lib for that?
-
Remove the window from the task bar while in minimized stateMy application uses a tray icon, which can open a dialog only if asked by the user. The rest of the time my dialog in the minimized state. How can I remove the window from the task bar while my dialog is in minimized state so the user will only see the tray icon? And how can I remove the menu that appears with the right click on the dialog’s icon (left top corner)?
-
remove the close, maximize and minimize buttons from a dialogHi Does anybody knows how can I remove the close, maximize and minimize buttons from a dialogduring runtime? (I use the doc/view configuration in my project)
-
Internet connectionHi Progman! Try this small function: long MyView::IsConnected() { unsigned long ulConnectionFlags = 1; return InternetGetConnectedState(&ulConnectionFlags ,0); } To be sure you can add an attempt to open a site but I don’t think it is necessary. You must add the #include "WININET.H" line and WININET.lib to your project.