basic MFC app
-
fearless_ wrote:
I don`t see the resource.
I already told you where to find it, or you can just use the View menu item to open the Resource View.
Sorry my wording is wrong, I can`t see the designer.
-
Sorry my wording is wrong, I can`t see the designer.
-
the screen area where the dialogs are assembled.
-
the screen area where the dialogs are assembled.
-
In have explained twice already, open the resource view, either from the View menu, or use Ctrl+Shift+E.
I got it, but only after you closing and opening the project again. Sorry for making ripples over nothing.
-
I`m trying to build a barebones MFC app. I`m used to C# Forms, but I`m having a tough time in MFC though. I`m creating a new MFC app in the New Project dialog and in the Wizard I pick Dialog based app as app type. However after creation I can`t open the resource (in the resource view) to fill it with controls.
I need help in dealing with a picture control. How do you access/change the picture control data (within a click button event) ?
-
I need help in dealing with a picture control. How do you access/change the picture control data (within a click button event) ?
The recommended MFC way is to create a control member variable (of the type CStatic or any derived from CStatic class) for this picture control. Then you will be able use all the methods of this class.
-
The recommended MFC way is to create a control member variable (of the type CStatic or any derived from CStatic class) for this picture control. Then you will be able use all the methods of this class.
I want to use a plain (basic) Win32 approach with an exposed WinMain. It`s not a rich Win App, I only need a button or two, a textbox and a listbox (besides the picture box)
-
I want to use a plain (basic) Win32 approach with an exposed WinMain. It`s not a rich Win App, I only need a button or two, a textbox and a listbox (besides the picture box)
fearless_ wrote:
I want to use a plain Win32 approach with an exposed WinMain. It`s not a rich Win App, ...
Then why is your subject "basic MFC app"?
-
I want to use a plain (basic) Win32 approach with an exposed WinMain. It`s not a rich Win App, I only need a button or two, a textbox and a listbox (besides the picture box)
fearless_ wrote:
I want to use a plain Win32 approach with an exposed WinMain. It`s not a rich Win App, ...
Then why is your subject "basic MFC app"?
-
fearless_ wrote:
I want to use a plain Win32 approach with an exposed WinMain. It`s not a rich Win App, ...
Then why is your subject "basic MFC app"?
I made my mind. MFC is too much of a hassle. It crossed my mind to make a new thread, but I thought it would be better to keep rolling with this one.
-
I want to use a plain (basic) Win32 approach with an exposed WinMain. It`s not a rich Win App, I only need a button or two, a textbox and a listbox (besides the picture box)
[Static Control - Win32 apps | Microsoft Docs](https://docs.microsoft.com/en-us/windows/win32/controls/static-controls) [Using Static Controls - Win32 apps | Microsoft Docs](https://docs.microsoft.com/en-us/windows/win32/controls/using-static-controls)
-
[Static Control - Win32 apps | Microsoft Docs](https://docs.microsoft.com/en-us/windows/win32/controls/static-controls) [Using Static Controls - Win32 apps | Microsoft Docs](https://docs.microsoft.com/en-us/windows/win32/controls/using-static-controls)
Thanks Victor