Re: [WiX-users] Messagebox from custom action with a lot of text

2010-07-19 Thread daniel.knoepfel
toolset. Betreff: Re: [WiX-users] Messagebox from custom action with a lot of text Did you try just showing a standard windows forms message box from within your C# custom action? MessageBox.Show() On Mon, Jul 19, 2010 at 12:31 PM, wrote: > > Hi Christopher > > I currently hav

Re: [WiX-users] Messagebox from custom action with a lot of text

2010-07-19 Thread James Poole
tle more > complicated. > > Greetings > > > > Von: Christopher Painter [chr...@deploymentengineering.com] > Gesendet: Montag, 19. Juli 2010 18:18 > An: General discussion for Windows Installer XML toolset. > Betreff: Re: [WiX-users] Messagebox fr

Re: [WiX-users] Messagebox from custom action with a lot of text

2010-07-19 Thread daniel.knoepfel
taller XML toolset. Betreff: Re: [WiX-users] Messagebox from custom action with a lot of text Where is this custom action scheduled? I usually have a reusable dialog that contains an error property and then have my CA set the property and return. ControlEvents then detect the error property has dat

Re: [WiX-users] Messagebox from custom action with a lot of text

2010-07-19 Thread Christopher Painter
0:55:12 AM Subject: [WiX-users] Messagebox from custom action with a lot of text 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) { Rec

[WiX-users] Messagebox from custom action with a lot of text

2010-07-19 Thread daniel.knoepfel
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(InstallM