Re: [WiX-users] Populating Listbox from a custom action

2007-07-20 Thread Alexei
The problem was that I wanted the LISTBOXVALUES property set to the Value column of the listbox, as opposed to the Text. I realise now that it was because I wasn't actually populating the listbox with any text - merely the value. What I wanted to do was: WcaAddTempRecord(hTable, hColumns, L"ListB

Re: [WiX-users] Populating Listbox from a custom action

2007-07-19 Thread Bob Arnson
Alexei wrote: > Thanks for all the replies however it's not the inclusion of the listbox > table - that is most definitely there. And I can populate it as well. > The problem is trying to achieve the behavior corresponding to > But what exactly is the problem? Is the data not getting written to

Re: [WiX-users] Populating Listbox from a custom action

2007-07-19 Thread Alexei
Thanks for all the replies however it's not the inclusion of the listbox table - that is most definitely there. And I can populate it as well. The problem is trying to achieve the behavior corresponding to but by using the wcautil.lib Currently I'm using WcaAddTempReco

Re: [WiX-users] Populating Listbox from a custom action

2007-07-18 Thread Bob Arnson
K-ballo wrote: > Make sure that the Table that you are adding values to, exists at the > msi database. If I'm not wrong that table is ListBox, so you could try > adding to your project and see if that works. > WiX automatically includes an empty ListBox table if there's any UI. -- sig://bo

Re: [WiX-users] Populating Listbox from a custom action

2007-07-18 Thread Christopher Painter
I'm suprised that you would have to force the existence of the ListBox table in the first place. ISHNMET drops most tables from the resultant MSI when they contain no table data, but it leaves some tables like ListBox because they could be needed at install time. After all, everyone has a UI

Re: [WiX-users] Populating Listbox from a custom action

2007-07-18 Thread Alexei
K-ballo wrote: > > Make sure that the Table that you are adding values to, exists at the > msi database. If I'm not wrong that table is ListBox, so you could try > adding to your project and see if that works. > > K-ballo.- > Thanks for the reply. I'm fairly sure the table is there and is

Re: [WiX-users] Populating Listbox from a custom action

2007-07-18 Thread K-ballo
Make sure that the Table that you are adding values to, exists at the msi database. If I'm not wrong that table is ListBox, so you could try adding to your project and see if that works. K-ballo.- Alexei Zhyzhyn escribió: > Hi everyone, > what I'm trying to do is to populate a listbox in my in