Hi In our wix installer a C# custom action, needs to pop up a window to show a message that might be quite long. I currently do it the following way:
public void ShowWarningMessageBox(string pMessage) { Record record = new Record(); record.FormatString = pMessage; Session.Message(InstallMessage.Error | (InstallMessage)System.Windows.Forms.MessageBoxIcon.Warning | (InstallMessage)System.Windows.Forms.MessageBoxButtons.OK, record); Unfortunately, longer messages are not fully shown, only parts of it. Is there a way to ensure that the entire text is displayed? If somehow possible, i would like to stick with the Wix session.Message method, rather than using windows forms because of the focus. If somebody knows, how to ensure that the focus is set correctly in a windows forms message box, i would also happily go with that (preventing displaying a msgbox in silent mode is no problem as the uilevel property can be checked) Greetigns and thanks in advance Dan ------------------------------------------------------------------------------ This SF.net email is sponsored by Sprint What will you do first with EVO, the first 4G phone? Visit sprint.com/first -- http://p.sf.net/sfu/sprint-com-first _______________________________________________ WiX-users mailing list WiX-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/wix-users