I am working on an MFC project with part of it requesting the user to choose a folder destination.
Right now, I have it implemented using a non-editable CEdit box whose value is set by the path chosen by the user, who chooses it by clicking a CButton button which calls the CFolderPickerDialog found here.
However, it looks rather messy and I would prefer using the sleeker CMFCEditBrowseCtrl, which from my research and understanding (and please do correct me if I am wrong about this), can make what is essentially one object with both the box that holds a string (in this case a folder path) and a button which opens up a folder browse dialog, like this one here, above the 100% in the linked image.
My trouble is implementing this in the .rc file. Other C.... objects like CEdit or CListBox require the user to add them to the .rc file with CONTROLS found here. For example, CEdit uses EDITTEXT and CListBox uses LISTBOX.
My question is which control is used for CMFCEditBrowseCtrl ?
Ideally, I could use a style in the .rc file to make the box un-editable, and can only be changed when the user browses for a folder. Then the box will contain the folder path.

The docs at
CMFCEditBrowseCtrlsay to use an EDIT control in the dialog resource then to useCMFCEditBrowseCtrlfor the bound member.All this would be easier to do with class wizard but can be accomplished manually as well.