Re: [WiX-users] Count of items in aListBox

2008-11-21 Thread Vuchuru, Surekha (SBT US EXT)
discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] Count of items in aListBox In article <[EMAIL PROTECTED]> , "Vuchuru, Surekha (SBT US EXT)" <[EMAIL PROTECTED]> writes: > OMG !!! I cant belive this, for someone who does not want to help, you >

Re: [WiX-users] Count of items in aListBox

2008-11-21 Thread Richard
In article <[EMAIL PROTECTED]>, "Vuchuru, Surekha (SBT US EXT)" <[EMAIL PROTECTED]> writes: > OMG !!! I cant belive this, for someone who does not want to help, you > are so pretentious. I help lots of people, but I don't help people that demand I help them or are upset that I didn't answer

Re: [WiX-users] Count of items in aListBox

2008-11-21 Thread Vuchuru, Surekha (SBT US EXT)
Thank you so much Alex... Regards, Surekha Vuchuru -Original Message- From: Alex Cater [mailto:[EMAIL PROTECTED] Sent: Thursday, November 20, 2008 6:12 PM To: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] Count of items in aListBox 1) Brute force 'query and loop&

Re: [WiX-users] Count of items in aListBox

2008-11-20 Thread Vuchuru, Surekha (SBT US EXT)
OMG !!! I cant belive this, for someone who does not want to help, you are so pretentious. -Original Message- From: Richard [mailto:[EMAIL PROTECTED] Sent: Thursday, November 20, 2008 6:45 PM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] Count of

Re: [WiX-users] Count of items in aListBox

2008-11-20 Thread Richard
In article <[EMAIL PROTECTED]>, "Vuchuru, Surekha (SBT US EXT)" <[EMAIL PROTECTED]> writes: > Anyone please? I don't know about others, but when I see someone begging for an answer within 2 hours of posting their original question on a free support list where its not people's jobs to answer

Re: [WiX-users] Count of items in aListBox

2008-11-20 Thread Alex Cater
1) Brute force 'query and loop' e.g. PTCHAR szQuery = _T("SELECT * FROM `ListBox` WHERE `Property` = '' ORDER BY `Order`"); if (ERROR_SUCCESS == MsiDatabaseOpenView(hDatabase, szQuery, &hView)) ... Then loop to determine next order value.. UINT result = MsiViewFetch(hView, &hRecord); while(E

Re: [WiX-users] Count of items in aListBox

2008-11-20 Thread Vuchuru, Surekha (SBT US EXT)
Hi Rob, Are there any suggestions from your side? -Original Message- From: Vuchuru, Surekha (SBT US EXT) Sent: Thursday, November 20, 2008 4:45 PM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] Count of items in aListBox Anyone please? Thanks and

Re: [WiX-users] Count of items in aListBox

2008-11-20 Thread Vuchuru, Surekha (SBT US EXT)
Anyone please? Thanks and Regards, Surekha Vuchuru -Original Message- From: Vuchuru, Surekha (SBT US EXT) [mailto:[EMAIL PROTECTED] Sent: Thursday, November 20, 2008 2:43 PM To: General discussion for Windows Installer XML toolset. Subject: [WiX-users] Count of items in aListBox Hi

[WiX-users] Count of items in aListBox

2008-11-20 Thread Vuchuru, Surekha (SBT US EXT)
Hi Everyone, I have two listboxes in a Wix UI. When I select an item on left side listbox and click Add button, that item should be added to the right side listbox. I have written a C++ CA which gets triggered when we select an item and click Add button. I am using WcaAddTempRecord to add that se