Re: [WiX-users] How to populate a list box in a msi dialog duringruntime

2009-10-28 Thread Blair
: [WiX-users] How to populate a list box in a msi dialog duringruntime Thanks for the tips on how to populate a ListBox at runtime. I created a C++ dll to read a file on disc to populate the items in the listbox and it is working good for me now. When my list box is populated at runtime, how do I

Re: [WiX-users] How to populate a list box in a msi dialog duringruntime

2009-10-28 Thread Uma Harano
AM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] How to populate a list box in a msi dialog duringruntime Thanks for pointing out the EnsureTable tag. I'll use that from now on. Much cleaner. -Original Message- From: Alex Cater [mailto:alex.ca...@ap

Re: [WiX-users] How to populate a list box in a msi dialog duringruntime

2009-10-19 Thread Chris Lord
How weirdI send a message to my wife and it appears via WiX..apologies everyone! -Original Message- From: Chris Lord Sent: Monday, October 19, 2009 12:19 To: wix-users Subject: Re: [WiX-users] How to populate a list box in a msi dialog duringruntime BTW, we still need to talk

Re: [WiX-users] How to populate a list box in a msi dialog duringruntime

2009-10-19 Thread Chris Lord
] How to populate a list box in a msi dialog duringruntime Dominique Louis wrote: > > There must be at least 1 dummy ListItem, otherwise the appropriate > table will not be created. > The http://wix.sourceforge.net/manual-wix2/wix_xsd_ensuretable.htm EnsureTable element can b

Re: [WiX-users] How to populate a list box in a msi dialog duringruntime

2009-10-19 Thread Dominique Louis
Thanks for pointing out the EnsureTable tag. I'll use that from now on. Much cleaner. -Original Message- From: Alex Cater [mailto:alex.ca...@apdcomms.com] Sent: 19 October 2009 11:03 To: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] How to populate a list box in a msi d

Re: [WiX-users] How to populate a list box in a msi dialog duringruntime

2009-10-19 Thread Alex Cater
Dominique Louis wrote: > > There must be at least 1 dummy ListItem, otherwise the appropriate table > will not be created. > The http://wix.sourceforge.net/manual-wix2/wix_xsd_ensuretable.htm EnsureTable element can be used to cleanly accomplish this: e.g. -- View this message in context:

Re: [WiX-users] How to populate a list box in a msi dialog duringruntime

2009-10-13 Thread Dominique Louis
---- From: Uma Harano [mailto:uhar...@esri.com] Sent: 12 October 2009 23:59 To: wix-users@lists.sourceforge.net Subject: [WiX-users] How to populate a list box in a msi dialog duringruntime Hi, I need to populate a ListBox control in a MSI dialog at runtime. What is the best way to do this? Thanks!