Re: [WiX-users] How do I check UserName and Password

2009-03-19 Thread Michael
Hi Romeo, I'm using Wix Version 3.0.4721.0 (Beta). Whether it will be the bug in Wix v3. log is here when I clicked "Next" 4 to 5 times, Action 23:55:06: LicenseAgreementDlg. Dialog created MSI (c) (68:4C) [23:55:07:296]: PROPERTY CHANGE: Adding LicenseAccepted property. Its value is '1'. Acti

Re: [WiX-users] How do I check UserName and Password

2009-03-18 Thread Romeo Salayo Jr.
That was strange... before i'm having the same problem with checking username and password. The problem was the property was not set instantly when I click the next button, I need to press it twice to set the property correctly but when I added Order attributes, it works like a charm. I'm using re

Re: [WiX-users] How do I check UserName and Password

2009-03-18 Thread Michael
Hi Romeo, Yes, is nested under the of "Next". But, when clicking "Next" button, either next dialog is not opening or error message not displayed. I tried by putting under the . Same behavior. I took log for my msi. Action 23:55:06: LicenseAgreementDlg. Dialog created MSI (c) (68:4C) [23:55:

Re: [WiX-users] How do I check UserName and Password

2009-03-17 Thread Romeo Salayo Jr.
Hi SMR, Make sure your is nested under the of your "Next" button. 1 1 This works for me... or just put your codes outside by assigning directly the Dialog and Control ID: 1 1 And make your your CA is w

Re: [WiX-users] How do I check UserName and Password

2009-03-17 Thread Michael
Hi Romeo, Thanks for your suggestion. But, Still I'm in same case. Any more suggestions welcome. -SMR Romeo Salayo Jr. wrote: > Hi SMR, > > Try putting a Order attribute in you Publish like this: > 1 > 1 > > > > Hope this helps... > > Regards, > Romeo > > > Michael-12 wrote: > >> Hi, >> >>

Re: [WiX-users] How do I check UserName and Password

2009-03-17 Thread Romeo Salayo Jr.
Hi SMR, Try putting a Order attribute in you Publish like this: 1 1 Hope this helps... Regards, Romeo Michael-12 wrote: > > Hi, > > I found the how to run custom action within control. my code is below, > (Within "Next" Control) > Value="CheckUser.Property">1 > 1

Re: [WiX-users] How do I check UserName and Password

2009-03-16 Thread Michael
Hi, I found the how to run custom action within control. my code is below, (Within "Next" Control) 1 1 my custom action dll will set the property VALIDATEUSER = 1, if username and password valid. But, When I click Next there is no action in Installer.

[WiX-users] How do I check UserName and Password

2009-03-15 Thread Michael
Hi, How do I run custom action on clicking Next button? I have custom action to check username and password. I need to run that custom action on clicking Next button? If username and password is error, an error message must display that invalid username and password. Please help me out. Thank