How to write a multiline text in a static text control in mfc?

mfc, visual-c++

Solution

Also keep in mind that if the "Center Image" style (SS_CENTERIMAGE) is applied (giving you vertical centering of the text), then "\r\n" character sequences are ignored.

Problem

I have a simple problem with my static text control. I want to write two sentences in two lines. I searched everywhere, they answered that its style should not be simple and it should be big enough and then it can be done with \n or \r\n. Another guy wrote that it worked! I did that, but it's not working! The caption is "Welcome to Genetic Algorithm Simulator Application.\nPlease Choose a Function:" but it just ignores \n and shows this: Welcome to Genetic Algorithm Simulator Application.Please Choose a Function:"

Original source