Is there a way to create a program with tabs with C++ without MFC? Just pure WinAPI for example. With Propert Sheets, or Tab Controls. I'm not sure Tab Control is a MFC-specific class or not.
I couldn't find a good example about doing this with Property Sheets, or anything else. Every example uses MFC, but I need a non-MFC example.
Is there a way of doing this without MFC? With Propery Sheets, or with the Tab Control?
Thank you.
Of course, it is possible. MFC is just a wrapper around Windows APIs. If you are willing to spend more time developing "pure" Win32 application, then see this sample for Tab Control -Tab Control in Win32