Re: [WiX-users] displaying action data text in ExecuteProgressActionDataText

2014-03-08 Thread Steve-Ogilvie
well I guess I don't think this is a bug... However I did fix the issue. 1. took '.' out of my progress text strings 2. changed balextension DLL (WixStandardBootstrapperApplication.cpp) in method: OnExecuteMsiMessage from: ThemeSetTextControl(m_pTheme,

Re: [WiX-users] displaying action data text in ExecuteProgressActionDataText

2014-03-03 Thread Steve-Ogilvie
Another frustrating item I have had to take out of the bootstrapper :( Text Name=ExecuteProgressActionDataText X=11 Y=163 Width=-11 Height=17 FontId=3 DisablePrefix=yes/ I ONLY want the progressText of the Action Text displayed (as it does in a MSI) however the bootstrapper is displaying all

Re: [WiX-users] displaying action data text in ExecuteProgressActionDataText

2014-03-03 Thread Rob Mensching
Message- From: Steve-Ogilvie [mailto:steven.ogil...@titus.com] Sent: Monday, March 3, 2014 3:55 PM To: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] displaying action data text in ExecuteProgressActionDataText Another frustrating item I have had to take out of the bootstrapper :( Text

Re: [WiX-users] displaying action data text in ExecuteProgressActionDataText

2014-02-19 Thread Steve-Ogilvie
In the bootstrapper the burn engine is tacking on: Action time: CustomAction name. progress text I don't believe I can change the first two elements (Action time:) I am just using straight forward strings to describe what the custom action is doing, my dev manager wants to filter out the extra

Re: [WiX-users] displaying action data text in ExecuteProgressActionDataText

2014-02-19 Thread Phil Wilson
As Jacob says, those messages come from the ActionText data in the MSI files. Take a look at what's in there, if anything. If you want to control the text, that's the place to start. The callbacks just send you what's in there. I haven't looked at the bootstrapper and exactly what it may do with

Re: [WiX-users] displaying action data text in ExecuteProgressActionDataText

2014-02-19 Thread Steven Ogilvie
- From: Phil Wilson [mailto:phildgwil...@gmail.com] Sent: February-19-14 12:14 PM To: General discussion about the WiX toolset. Subject: Re: [WiX-users] displaying action data text in ExecuteProgressActionDataText As Jacob says, those messages come from the ActionText data in the MSI files. Take

[WiX-users] displaying action data text in ExecuteProgressActionDataText

2014-02-17 Thread Steve-Ogilvie
Hi, I have ExecuteProgressActionDataText set in the bootstrapper: Action: Time: ActionName Action Text I would like to just show: ActionName Action Text Is it this code that is setting the Action: Time: in WIUTIL.cpp case INSTALLMESSAGE_ACTIONDATA: if (WIU_MSI_PROGRESS_INVALID !=

Re: [WiX-users] displaying action data text in ExecuteProgressActionDataText

2014-02-17 Thread Hoover, Jacob
? http://msdn.microsoft.com/en-us/library/aa367516(v=vs.85).aspx -Original Message- From: Steve-Ogilvie [mailto:steven.ogil...@titus.com] Sent: Monday, February 17, 2014 6:40 PM To: wix-users@lists.sourceforge.net Subject: [WiX-users] displaying action data text