Archive: New line in MUI details view


New line in MUI details view
Hi,

I am trying to force a new line in the details view of the installer and have not succeeded.

I first create a string like:

StrCpy $MyVar "This should be one line.$\r$\nAnd another"
DetailPrint "$MyVar"

I print this to the installation log and it works just fine, but the details view does not break the text at all.
It just gives "blah, blah, blah ..." if the line is too long. Since you can not scroll over to read it, it would be helpful to be able to force it to wrap or put the breaks in myself.

I have tried '$\n' and '$\r$\n' in the string. Neither worked.

From what I have seen, the installer can do almost anything, so I assume it is my lack of understanding.

While I'm at this -- Thanks to all who have spent many hours developing and supporting NSIS. It was no doubt a labor of love, but lots of labor!!

John


NSIS uses a list view for the details log. It doesn't support line breaks. Why not use two DetailPrint commands?


Hi,

Thanks for the quick reply.

I don't use multiple DetailPrint statements because I build the output string in a function and return it by pushing it on the stack as a variable that the main pops. The message built can vary depending on the results, so it might have to be more than one line.

I guess I can put up with it or write a function that parses it.

At least the text log has the breaks.

So I guess "That's the Breaks".

Thanks again.

John


Couldn't you just DetailPrint it in the function directly as well as output the text from the function...

Outputing the text from the function and then parsing the output would take longer (not really noticably) but it'll still be messy :p

-Stu