User CheGueVerra - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T15:19:28Z http://stackoverflow.com/feeds/user/17787 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1439442/how-to-determine-if-a-registry-key-exists-in-wix/1439518#1439518 1 Answer by CheGueVerra for How to determine if a registry key exists in Wix CheGueVerra 2009-09-17T15:16:06Z 2009-09-17T15:16:06Z <p>Have a look at the <a href="http://www.wixwiki.com/index.php?title=RegistrySearch%5FElement" rel="nofollow">RegistrySearch</a></p> <p>Sample of use:</p> <pre><code> &lt;Property Id="MYRegSearch" Value="AVaLue" Secure="yes"&gt; &lt;RegistrySearch Id="RegSearch" Root="HKLM" Key="Software\!(wix.Manufacturer)\!(wix.ShortProduct)" Name="Values" Type="raw"/&gt; &lt;/Property&gt; </code></pre> http://stackoverflow.com/questions/1375216/iis-7-applications-and-asp-net-newbie-question/1375239#1375239 0 Answer by CheGueVerra for IIS 7 Applications and asp.net - newbie question CheGueVerra 2009-09-03T18:50:03Z 2009-09-03T18:50:03Z <p>Here's some links that helped me with understanding IIS 7.0</p> <p><a href="http://www.iis.net/configreference" rel="nofollow">Configuration reference</a> <a href="http://technet.microsoft.com/en-us/library/cc732976%28WS.10%29.aspx" rel="nofollow">Operation Guide</a></p> http://stackoverflow.com/questions/1312920/i-have-a-problem-in-dll/1312939#1312939 0 Answer by CheGueVerra for I have a problem in dll? CheGueVerra 2009-08-21T16:26:39Z 2009-08-22T22:39:56Z <p>As well you should have a look here, it might help if your trouble is elsewhere .. <a href="http://www.link-rank.com/dll.htm" rel="nofollow">Forms in dll</a></p> http://stackoverflow.com/questions/1295539/using-wix-to-package-an-installer-with-many-files/1295648#1295648 2 Answer by CheGueVerra for Using WiX to package an installer with many files CheGueVerra 2009-08-18T18:23:58Z 2009-08-18T19:09:28Z <p>Try this command</p> <pre><code>heat dir "Your_Directory" -gg -ke -template:Product -out "Files.wxs" </code></pre> <p>It will create this structure in the generated wxs file {Files.wxs}:</p> <pre><code>&lt;Fragment&gt; &lt;DirectoryRef Id="Files"&gt; &lt;Component Id="Test.ico" Guid="{YOUR_GUID}"&gt; &lt;File Id="Test.ico" Name="Test.ico" KeyPath="yes" Source="..[path to file]\Test.ico" /&gt; &lt;/Component&gt; &lt;/DirectoryRef&gt; &lt;/Fragment&gt; </code></pre> <p>You should get one for each file, that was in the directory that you ran heat against. Once that is done, you just have to add the wxs file to your project, make sure you have the directory that the directoryref points to is created.</p> http://stackoverflow.com/questions/1251904/folder-within-program-menu-folder-for-wix-3/1295527#1295527 2 Answer by CheGueVerra for Folder within Program Menu Folder for WiX 3 CheGueVerra 2009-08-18T18:01:34Z 2009-08-18T18:01:34Z <p>This is a sample test I did, when I was asked to do the same thing</p> <pre><code>&lt;Package InstallerVersion="200" Compressed="yes" /&gt; &lt;WixVariable Id="Manufacturer" Value="StackOverFlowHelper"/&gt; &lt;WixVariable Id="ShortProduct" Value="ShortCuts"/&gt; &lt;Media Id="1" Cabinet="WixShortCut.cab" EmbedCab="yes" /&gt; &lt;Icon Id="ShortCutIcon" SourceFile="YOUR.ico"/&gt; &lt;!-- The icon that appears in Add &amp; Remove Programs. --&gt; &lt;Property Id="ARPPRODUCTICON" Value="ShortCutIcon" /&gt; &lt;Directory Id="TARGETDIR" Name="SourceDir"&gt; &lt;Directory Id="ProgramFilesFolder"&gt; &lt;Directory Id="ManufacturerFolder" Name="!(wix.Manufacturer)"&gt; &lt;Directory Id="INSTALLLOCATION" Name="!(wix.ShortProduct)"&gt; &lt;Component Id="ProductComponent" Guid="{YOUR_GUID}" KeyPath="yes"&gt; &lt;CreateFolder/&gt; &lt;/Component&gt; &lt;/Directory&gt; &lt;/Directory&gt; &lt;Directory Id="ProgramMenuFolder"&gt; &lt;Directory Id="ProgramMenuManufacturer" Name="!(wix.ShortProduct)" /&gt; &lt;/Directory&gt; &lt;/Directory&gt; &lt;/Directory&gt; &lt;DirectoryRef Id="ProgramFilesFolder"&gt; &lt;Component Id="ProgramMenuShortcuts" Guid="{YOUR_GUID}"&gt; &lt;CreateFolder Directory="ProgramMenuManufacturer"/&gt; &lt;RemoveFolder Id="RemoveMenuShortcuts" Directory="ProgramMenuManufacturer" On="uninstall" /&gt; &lt;RegistryValue Root="HKCU" Key="Software\!(wix.Manufacturer)\!(wix.ShortProduct)" Name="InstalledStartMenuShortcuts" Type="integer" Value="1" /&gt; &lt;/Component&gt; &lt;/DirectoryRef&gt; &lt;DirectoryRef Id="INSTALLLOCATION" FileSource="Files"&gt; &lt;Component Id="WixShortCut" Guid="{YOUR_GUID}"&gt; &lt;File Id="Test.ShortCut" Vital="yes" Name="A_DOC.pdf" /&gt; &lt;CreateFolder /&gt; &lt;RegistryKey Root="HKCU" Key="Software\!(wix.Manufacturer)\!(wix.ShortProduct)" Action="createAndRemoveOnUninstall"&gt; &lt;RegistryValue Name="ShortCut" Value="1" Type="integer" KeyPath="yes"/&gt; &lt;/RegistryKey&gt; &lt;!-- Shortcut in Start menu. --&gt; &lt;Shortcut Id="ProgramMenuApplicationShortcut" Name="!(wix.ShortProduct)" Target="[#Test.ShortCut]" Directory="ProgramMenuManufacturer" Show="normal" Icon="ShortCutIcon"/&gt; &lt;/Component&gt; &lt;/DirectoryRef&gt; &lt;Feature Id="ProductFeature" Title="WixShortCuts" Level="1"&gt; &lt;ComponentRef Id="ProductComponent"/&gt; &lt;ComponentRef Id="ProgramMenuShortcuts"/&gt; &lt;ComponentRef Id="WixShortCut"/&gt; &lt;/Feature&gt; </code></pre> <p></p> http://stackoverflow.com/questions/1255761/how-to-get-a-installdirdlg-after-featuresdlg 1 How to get a InstallDirDlg after FeaturesDlg CheGueVerra 2009-08-10T16:05:11Z 2009-08-12T15:42:13Z <p>I've been trying to get a InstallDirDlg to show after the FeaturesDlg, but for some reason I get the Install progress Dialog. So, I created this simple test project that has 4 features (each installs a file)...</p> <p>Here's the code, thanks for the help...</p> <pre><code>&lt;Fragment&gt; &lt;UI Id="UserInterface"&gt; &lt;Property Id="WIXUI_INSTALLDIR" Value="INSTALLDIR" /&gt; &lt;TextStyle Id="WixUI_Font_Normal" FaceName="Tahoma" Size="8" /&gt; &lt;TextStyle Id="WixUI_Font_Bigger" FaceName="Tahoma" Size="9" Bold="yes" /&gt; &lt;TextStyle Id="WixUI_Font_Title" FaceName="Tahoma" Size="9" Bold="yes" /&gt; &lt;DialogRef Id="BrowseDlg" /&gt; &lt;DialogRef Id="DiskCostDlg" /&gt; &lt;DialogRef Id="ErrorDlg" /&gt; &lt;DialogRef Id="FatalError" /&gt; &lt;DialogRef Id="FilesInUse" /&gt; &lt;DialogRef Id="MsiRMFilesInUse" /&gt; &lt;DialogRef Id="PrepareDlg" /&gt; &lt;DialogRef Id="ProgressDlg" /&gt; &lt;DialogRef Id="ResumeDlg" /&gt; &lt;DialogRef Id="UserExit" /&gt; &lt;DialogRef Id="SetupTypeDlg" /&gt; &lt;DialogRef Id="FeaturesDlg"/&gt; &lt;Publish Dialog="WelcomeDlg" Control="Next" Event="NewDialog" Value="SetupTypeDlg"&gt;1&lt;/Publish&gt; &lt;Publish Dialog="SetupTypeDlg" Control="Back" Event="NewDialog" Value="WelcomeDlg"&gt;1&lt;/Publish&gt; &lt;!-- Typical install: add all features except web service. --&gt; &lt;Publish Dialog="SetupTypeDlg" Control="TypicalButton" Event="AddLocal" Value="ALL" Order="10"&gt;&lt;/Publish&gt; &lt;Publish Dialog="SetupTypeDlg" Control="TypicalButton" Event="Remove" Value="FEATUREB" Order="20"&gt;&lt;/Publish&gt; &lt;Publish Dialog="SetupTypeDlg" Control="TypicalButton" Event="Remove" Value="FEATUREC" Order="30"&gt;&lt;/Publish&gt; &lt;Publish Dialog="SetupTypeDlg" Control="TypicalButton" Event="Remove" Value="FEATURED" Order="40"&gt;&lt;/Publish&gt; &lt;Publish Dialog="SetupTypeDlg" Control="TypicalButton" Event="NewDialog" Value="InstallDirDlg" Order="50"&gt;1&lt;/Publish&gt; &lt;!-- Custom install: display feature tree. --&gt; &lt;Publish Dialog="SetupTypeDlg" Control="CustomButton" Event="NewDialog" Value="FeaturesDlg" Order="10"&gt;1&lt;/Publish&gt; &lt;!-- Complete install: all features. Errors out if IIS is absent. --&gt; &lt;Publish Dialog="SetupTypeDlg" Control="CompleteButton" Event="AddLocal" Value="ALL" Order="10"&gt;&lt;/Publish&gt; &lt;Publish Dialog="SetupTypeDlg" Control="CompleteButton" Event="NewDialog" Value="InstallDirDlg" Order="30"&gt;1&lt;/Publish&gt; &lt;Publish Dialog="FeaturesDlg" Control="Back" Event="NewDialog" Value="SetupTypeDlg"&gt;1&lt;/Publish&gt; &lt;Publish Dialog="FeaturesDlg" Control="Install" Event="DoAction" Value="MissingFeature" Order="10"&gt; &lt;![CDATA[(NOT(&amp;FEATUREA=3) AND NOT(&amp;FEATUREB=3) AND NOT(&amp;FEATUREC=3) AND NOT(&amp;FEATURED=3))]]&gt; &lt;/Publish&gt; &lt;Publish Dialog="FeaturesDlg" Control="Install" Event="NewDialog" Value="InstallDirDlg" Order="20"&gt;1&lt;/Publish&gt; &lt;Publish Dialog="InstallDirDlg" Control="Back" Event="NewDialog" Value="SetupTypeDlg"&gt;&lt;/Publish&gt; &lt;Publish Dialog="InstallDirDlg" Control="Next" Event="SetTargetPath" Value="[WIXUI_INSTALLDIR]" Order="10"&gt;1&lt;/Publish&gt; &lt;Publish Dialog="InstallDirDlg" Control="Next" Event="NewDialog" Value="VerifyReadyDlg" Order="20"&gt;1&lt;/Publish&gt; &lt;Publish Dialog="InstallDirDlg" Control="ChangeFolder" Property="_BrowseProperty" Value="[WIXUI_INSTALLDIR]" Order="10"&gt;1&lt;/Publish&gt; &lt;Publish Dialog="InstallDirDlg" Control="ChangeFolder" Event="SpawnDialog" Value="BrowseDlg" Order="20"&gt;1&lt;/Publish&gt; &lt;Publish Dialog="ExitDialog" Control="Finish" Event="EndDialog" Value="Return" Order="999"&gt;1&lt;/Publish&gt; &lt;!-- Back button declaration so no error on build --&gt; &lt;Publish Dialog="VerifyReadyDlg" Control="Back" Event="NewDialog" Value="InstallDirDlg"&gt;&lt;/Publish&gt; &lt;/UI&gt; &lt;UIRef Id="WixUI_Common" /&gt; &lt;UIRef Id="WixUI_ErrorProgressText" /&gt; &lt;/Fragment&gt; </code></pre> http://stackoverflow.com/questions/1255761/how-to-get-a-installdirdlg-after-featuresdlg/1267015#1267015 0 Answer by CheGueVerra for How to get a InstallDirDlg after FeaturesDlg CheGueVerra 2009-08-12T15:42:13Z 2009-08-12T15:42:13Z <p>After doing some tests, I found out that without this line:</p> <pre><code>&lt;Property Id="ALLUSERS" Value="1"/&gt; </code></pre> <p>That sets the installer for a per-machine install the sequence given above will fail everytime no matter what dialog you put after the FeaturesDlg. If anyone else finds an other solution I would like to see it.</p> http://stackoverflow.com/questions/1255878/why-does-windows-installer-display-a-popup-for-each-user-at-first-login/1255900#1255900 1 Answer by CheGueVerra for Why does Windows Installer display a popup for each user at first login? CheGueVerra 2009-08-10T16:34:01Z 2009-08-10T16:34:01Z <p>We had this problem, it was solved by removing the Advertise property in the shortcuts that are created in the installation process.</p> <p>That might be your issue...</p> http://stackoverflow.com/questions/1167331/how-to-change-default-culture-settings-in-a-net-web-application/1167399#1167399 0 Answer by CheGueVerra for how to change default culture settings in a .net web application? CheGueVerra 2009-07-22T18:52:28Z 2009-07-22T18:52:28Z <p>I would create a User Settings for the application, that would hold the CultureInfo for each user, and create a form to allow each user to edit the property ....</p> http://stackoverflow.com/questions/1112485/how-do-i-register-a-net-assembly-to-the-gac-and-register-it-for-com-in-wix-re/1166247#1166247 0 Answer by CheGueVerra for How do I register a .NET assembly to the GAC and register it for COM in WIX? (Regasm) CheGueVerra 2009-07-22T15:47:58Z 2009-07-22T15:47:58Z <p>Here's the <a href="http://stackoverflow.com/questions/205188/whats-the-correct-way-of-registering-installing-an-assembly-to-the-gac/205243#205243">link</a> to my answer to that ...</p> http://stackoverflow.com/questions/912198/iis7-add-new-website-host-header-asp-net-web-form/912251#912251 1 Answer by CheGueVerra for IIS7 Add New Website / Host Header ASP.NET Web Form CheGueVerra 2009-05-26T19:24:13Z 2009-05-26T19:24:13Z <p>You mean <a href="http://msdn.microsoft.com/en-us/library/bb763174.aspx" rel="nofollow">Here</a> and <a href="http://learn.iis.net/page.aspx/103/creating-a-web-site-on-iis-70/" rel="nofollow">here</a> ... </p> <p>Anything else, edit your question to be more specific.</p> http://stackoverflow.com/questions/904100/how-to-detect-media-services-are-installed-on-windows-server-2003 0 How to detect Media Services are installed on Windows server 2003? CheGueVerra 2009-05-24T16:23:07Z 2009-05-24T17:07:22Z <p>I've been trying to find some information on this. So far I've been using the version Key presence to do it, is there a better way ? </p> http://stackoverflow.com/questions/254718/how-do-you-use-fonts-after-installing-xna 1 How do you use fonts after installing xna CheGueVerra 2008-10-31T19:49:39Z 2009-05-18T13:19:58Z <p>I've downloaded a tutorial that had fonts included in the source. When I try to build the project, I always get the following error message:</p> <blockquote> <p>Error 1 The font family "Joystick" could not be found. Please ensure the requested font is installed, and is a TrueType or OpenType font.</p> </blockquote> <p>The font was added via the control panel, and is a TrueType font.</p> http://stackoverflow.com/questions/858923/wix-condition-properties-passed-from-command-line-dont-work/859879#859879 0 Answer by CheGueVerra for WiX condition properties passed from command line don't work? CheGueVerra 2009-05-13T19:21:27Z 2009-05-14T15:58:31Z <p>If IIRC Advertise has to bet set at Yes</p> <p>You have seen this example from MindCapers <a href="http://wix.mindcapers.com/wiki/Shortcuts%5Fin%5FWiX" rel="nofollow">here</a>, I had trouble with the Shorcuts until I created the registry entry.</p> http://stackoverflow.com/questions/860119/delphi-custom-message-handlers/860144#860144 1 Answer by CheGueVerra for Delphi custom message handlers CheGueVerra 2009-05-13T20:10:26Z 2009-05-13T20:10:26Z <p>You might try and change the end of the declaration to match the message you are trying to send.</p> <pre><code>procedure OnRefreshRequest(var Msg: TMessage); message WM_CEA_REFRESH; </code></pre> <p>Should be this</p> <pre><code>procedure OnRefreshRequest(var Msg: TMessage); message WM_REFRESH_MSG; </code></pre> http://stackoverflow.com/questions/854462/windows-smtp-server-with-server-2008-and-php/854481#854481 0 Answer by CheGueVerra for Windows SMTP Server with Server 2008 and PHP CheGueVerra 2009-05-12T19:37:12Z 2009-05-12T19:37:12Z <p>That test only applies to 2000, at least that what the papers says. You should try <a href="http://blogs.iis.net/bills/archive/2006/09/19/How-to-install-PHP-on-IIS7-%5F2800%5FRC1%5F2900%5F.aspx" rel="nofollow">here</a></p> http://stackoverflow.com/questions/819722/remove-repair-option-screen-from-msi-installer/821292#821292 1 Answer by CheGueVerra for Remove repair option screen from MSI installer CheGueVerra 2009-05-04T18:25:18Z 2009-05-04T18:25:18Z <p>Have a look at this documentation from MSDN for: </p> <p><a href="http://msdn.microsoft.com/en-us/library/aa367590%28VS.85%29.aspx" rel="nofollow">ARPNOMODIFY</a></p> <p><a href="http://msdn.microsoft.com/en-us/library/aa367592%28VS.85%29.aspx" rel="nofollow">ARPNOREPAIR</a></p> http://stackoverflow.com/questions/798194/wix-3-0-list-of-available-ui-dialogs/798764#798764 2 Answer by CheGueVerra for WiX 3.0: List of available UI Dialogs CheGueVerra 2009-04-28T16:23:04Z 2009-04-28T16:23:04Z <p>If you download the latest source for WIX, you'll find the declaration for WixUI_Common, in the Common.wxs file:</p> <pre><code>&lt;UI Id="WixUI_Common"&gt; &lt;!-- ui text --&gt; &lt;UIText Id="AbsentPath" /&gt; &lt;UIText Id="bytes"&gt;!(loc.UITextbytes)&lt;/UIText&gt; &lt;UIText Id="GB"&gt;!(loc.UITextGB)&lt;/UIText&gt; &lt;UIText Id="KB"&gt;!(loc.UITextKB)&lt;/UIText&gt; &lt;UIText Id="MB"&gt;!(loc.UITextMB)&lt;/UIText&gt; &lt;UIText Id="MenuAbsent"&gt;!(loc.UITextMenuAbsent)&lt;/UIText&gt; &lt;UIText Id="MenuAdvertise"&gt;!(loc.UITextMenuAdvertise)&lt;/UIText&gt; &lt;UIText Id="MenuAllCD"&gt;!(loc.UITextMenuAllCD)&lt;/UIText&gt; &lt;UIText Id="MenuAllLocal"&gt;!(loc.UITextMenuAllLocal)&lt;/UIText&gt; &lt;UIText Id="MenuAllNetwork"&gt;!(loc.UITextMenuAllNetwork)&lt;/UIText&gt; &lt;UIText Id="MenuCD"&gt;!(loc.UITextMenuCD)&lt;/UIText&gt; &lt;UIText Id="MenuLocal"&gt;!(loc.UITextMenuLocal)&lt;/UIText&gt; &lt;UIText Id="MenuNetwork"&gt;!(loc.UITextMenuNetwork)&lt;/UIText&gt; &lt;UIText Id="NewFolder"&gt;!(loc.UITextNewFolder)&lt;/UIText&gt; &lt;UIText Id="ScriptInProgress"&gt;!(loc.UITextScriptInProgress)&lt;/UIText&gt; &lt;UIText Id="SelAbsentAbsent"&gt;!(loc.UITextSelAbsentAbsent)&lt;/UIText&gt; &lt;UIText Id="SelAbsentAdvertise"&gt;!(loc.UITextSelAbsentAdvertise)&lt;/UIText&gt; &lt;UIText Id="SelAbsentCD"&gt;!(loc.UITextSelAbsentCD)&lt;/UIText&gt; &lt;UIText Id="SelAbsentLocal"&gt;!(loc.UITextSelAbsentLocal)&lt;/UIText&gt; &lt;UIText Id="SelAbsentNetwork"&gt;!(loc.UITextSelAbsentNetwork)&lt;/UIText&gt; &lt;UIText Id="SelAdvertiseAbsent"&gt;!(loc.UITextSelAdvertiseAbsent)&lt;/UIText&gt; &lt;UIText Id="SelAdvertiseAdvertise"&gt;!(loc.UITextSelAdvertiseAdvertise)&lt;/UIText&gt; &lt;UIText Id="SelAdvertiseCD"&gt;!(loc.UITextSelAdvertiseCD)&lt;/UIText&gt; &lt;UIText Id="SelAdvertiseLocal"&gt;!(loc.UITextSelAdvertiseLocal)&lt;/UIText&gt; &lt;UIText Id="SelAdvertiseNetwork"&gt;!(loc.UITextSelAdvertiseNetwork)&lt;/UIText&gt; &lt;UIText Id="SelCDAbsent"&gt;!(loc.UITextSelCDAbsent)&lt;/UIText&gt; &lt;UIText Id="SelCDAdvertise"&gt;!(loc.UITextSelCDAdvertise)&lt;/UIText&gt; &lt;UIText Id="SelCDCD"&gt;!(loc.UITextSelCDCD)&lt;/UIText&gt; &lt;UIText Id="SelCDLocal"&gt;!(loc.UITextSelCDLocal)&lt;/UIText&gt; &lt;UIText Id="SelChildCostNeg"&gt;!(loc.UITextSelChildCostNeg)&lt;/UIText&gt; &lt;UIText Id="SelChildCostPos"&gt;!(loc.UITextSelChildCostPos)&lt;/UIText&gt; &lt;UIText Id="SelCostPending"&gt;!(loc.UITextSelCostPending)&lt;/UIText&gt; &lt;UIText Id="SelLocalAbsent"&gt;!(loc.UITextSelLocalAbsent)&lt;/UIText&gt; &lt;UIText Id="SelLocalAdvertise"&gt;!(loc.UITextSelLocalAdvertise)&lt;/UIText&gt; &lt;UIText Id="SelLocalCD"&gt;!(loc.UITextSelLocalCD)&lt;/UIText&gt; &lt;UIText Id="SelLocalLocal"&gt;!(loc.UITextSelLocalLocal)&lt;/UIText&gt; &lt;UIText Id="SelLocalNetwork"&gt;!(loc.UITextSelLocalNetwork)&lt;/UIText&gt; &lt;UIText Id="SelNetworkAbsent"&gt;!(loc.UITextSelNetworkAbsent)&lt;/UIText&gt; &lt;UIText Id="SelNetworkAdvertise"&gt;!(loc.UITextSelNetworkAdvertise)&lt;/UIText&gt; &lt;UIText Id="SelNetworkLocal"&gt;!(loc.UITextSelNetworkLocal)&lt;/UIText&gt; &lt;UIText Id="SelNetworkNetwork"&gt;!(loc.UITextSelNetworkNetwork)&lt;/UIText&gt; &lt;UIText Id="SelParentCostNegNeg"&gt;!(loc.UITextSelParentCostNegNeg)&lt;/UIText&gt; &lt;UIText Id="SelParentCostNegPos"&gt;!(loc.UITextSelParentCostNegPos)&lt;/UIText&gt; &lt;UIText Id="SelParentCostPosNeg"&gt;!(loc.UITextSelParentCostPosNeg)&lt;/UIText&gt; &lt;UIText Id="SelParentCostPosPos"&gt;!(loc.UITextSelParentCostPosPos)&lt;/UIText&gt; &lt;UIText Id="TimeRemaining"&gt;!(loc.UITextTimeRemaining)&lt;/UIText&gt; &lt;UIText Id="VolumeCostAvailable"&gt;!(loc.UITextVolumeCostAvailable)&lt;/UIText&gt; &lt;UIText Id="VolumeCostDifference"&gt;!(loc.UITextVolumeCostDifference)&lt;/UIText&gt; &lt;UIText Id="VolumeCostRequired"&gt;!(loc.UITextVolumeCostRequired)&lt;/UIText&gt; &lt;UIText Id="VolumeCostSize"&gt;!(loc.UITextVolumeCostSize)&lt;/UIText&gt; &lt;UIText Id="VolumeCostVolume"&gt;!(loc.UITextVolumeCostVolume)&lt;/UIText&gt; &lt;/UI&gt; </code></pre> <p>This is from the 3.0.5217.0 source.</p> http://stackoverflow.com/questions/796090/iis7-creating-virtual-directory-to-files-on-another-server/796101#796101 1 Answer by CheGueVerra for IIS7 Creating Virtual Directory to files on another server CheGueVerra 2009-04-28T03:22:56Z 2009-04-28T05:20:10Z <p>Did you have a look at this <a href="http://learn.iis.net/page.aspx/372/serving-new-content/" rel="nofollow">video</a> and this <a href="http://stackoverflow.com/questions/647484/how-to-create-a-virtual-directory-in-iis7-for-asp-net">post</a></p> <p>EDIT:</p> <p><a href="http://www.eggheadcafe.com/conversation.aspx?messageid=29246375&amp;threadid=29246375" rel="nofollow">This</a> and if that doesn't work try doing <a href="http://blogs.iis.net/rakkimk/archive/2008/10/15/iis7-how-to-set-up-logging-to-a-remote-unc-share.aspx" rel="nofollow">This</a> </p> http://stackoverflow.com/questions/794956/dreamweaver-javascript-debugger/794980#794980 0 Answer by CheGueVerra for Dreamweaver Javascript Debugger CheGueVerra 2009-04-27T19:40:55Z 2009-04-27T19:40:55Z <p>I solved most javascript problems using the Error Console in FireFox, I never got that to work :P</p> http://stackoverflow.com/questions/794647/why-is-the-user-information-stored-in-two-different-tables-in-asp-nets-default-m/794816#794816 0 Answer by CheGueVerra for Why is the User information stored in two different tables in ASP.NET's default Membership Provider? CheGueVerra 2009-04-27T18:56:02Z 2009-04-27T18:56:02Z <p>I found this explination from this <a href="http://aspnet.4guysfromrolla.com/articles/120705-1.aspx" rel="nofollow">page</a>:</p> <p>The SqlMembershipProvider stores user account information in two related tables: </p> <ul> <li><p>aspnet_Users - has a record for each user account, storing the bare essentials. The UserId column uniquely identifies each user in the system, and is stored as a uniqueidentifier (a GUID).</p></li> <li><p>aspnet_Membership - has a UserId column that ties each record back to a particular record in aspnet_Users. The aspnet_Membership table stores core data associated with every user account: Email, Password, the security question and answer, and so on.</p></li> </ul> http://stackoverflow.com/questions/787811/how-do-i-create-a-custom-dialog-in-wix-for-user-input/788666#788666 1 Answer by CheGueVerra for How do I create a custom dialog in WiX for user input? CheGueVerra 2009-04-25T10:30:55Z 2009-04-25T10:30:55Z <p>This <a href="http://www.wixwiki.com/index.php?title=UiExtension" rel="nofollow">WIX WIKI</a> helped me when creating my custom dialogs for WIX.</p> http://stackoverflow.com/questions/787354/how-to-detect-exact-length-in-regex 1 How to detect exact length in regex CheGueVerra 2009-04-24T20:02:50Z 2009-04-25T08:31:11Z <p>I have two regular expressions that validate the values entered.</p> <p>One that allows any length of Alpha-Numeric value:</p> <pre><code>@"^\s*(?&lt;ALPHA&gt;[A-Z0-9]+)\s*" </code></pre> <p>And the other only allows numerical values:</p> <pre><code>@"^\s*(?&lt;NUM&gt;[0-9]{10})" </code></pre> <p>How can I get a numerical string of the length of 11 not to be catched by the <code>NUM</code> regex.</p> http://stackoverflow.com/questions/782938/wix-installed-property/782953#782953 0 Answer by CheGueVerra for WIX Installed property CheGueVerra 2009-04-23T18:30:23Z 2009-04-23T18:30:23Z <p>Did you set your WIX project to be able to detect it's an Upgrade ? Have a look at the <a href="http://www.tramontana.co.hu/wix/lesson4.php" rel="nofollow">upgrade part</a> of the basic <a href="http://www.tramontana.co.hu/wix/" rel="nofollow">WIX Tutorials</a></p> http://stackoverflow.com/questions/778210/wix-trying-to-figure-out-install-sequences/778358#778358 1 Answer by CheGueVerra for WiX - trying to figure out install sequences CheGueVerra 2009-04-22T17:34:30Z 2009-04-22T19:30:16Z <p>Try getting a log file of the Installation, and look for the sequence order in there and the value of the condition to perform the Custom Action</p> <p>Use this in the command line: msiexec /i [msiname] /l*v [filename]</p> <p>EDIT: After reading your comment have a look at this page <a href="http://msdn.microsoft.com/en-us/library/aa368561%28VS.85%29.aspx" rel="nofollow">here</a> you could try to add NOT INSTALLED in the condition</p> <p>EDIT2: I found this <a href="http://www.installsite.org/pages/en/bugs%5Fmsi.htm" rel="nofollow">page</a> Search for your error Number 1631</p> http://stackoverflow.com/questions/769064/code-to-create-iis-website/769099#769099 0 Answer by CheGueVerra for Code to create IIS Website CheGueVerra 2009-04-20T16:41:54Z 2009-04-20T16:41:54Z <p>The best place for information on IIS 7, that I found so far is <a href="http://learn.iis.net/" rel="nofollow">here</a></p> http://stackoverflow.com/questions/98606/favorite-visual-studio-keyboard-shortcuts/226399#226399 0 Answer by CheGueVerra for Favorite Visual Studio keyboard shortcuts CheGueVerra 2008-10-22T15:50:09Z 2009-03-11T02:20:43Z <p>Here's a link to a <a href="http://www.wwwcoder.com/Weblogs/tabid/283/EntryID/774/Default.aspx" rel="nofollow">list</a> of Shortcuts I find usefull (VS2003) but some still apply,</p> <p>My favorite being <kbd>F12</kbd> and <kbd>Ctrl</kbd>+<kbd>-</kbd> to navigate to the declaration and back</p> http://stackoverflow.com/questions/591516/simple-regex-php/591532#591532 2 Answer by CheGueVerra for Simple RegEx PHP CheGueVerra 2009-02-26T17:25:22Z 2009-02-26T17:33:20Z <p>I found <a href="http://www.iowacomputergurus.com/free-products/regular-expression-tester.aspx" rel="nofollow">this regular expression tester</a> to be helpful.</p> http://stackoverflow.com/questions/554164/how-can-i-make-simple-online-multi-player-games/554191#554191 0 Answer by CheGueVerra for How can I make simple online multi-player games? CheGueVerra 2009-02-16T18:56:11Z 2009-02-16T18:56:11Z <p>I would start by creating the game in the platform you are used to use, then pick a web platform that you want to try out, and try to recreate the game. </p> http://stackoverflow.com/questions/543995/replicating-visual-studio-com-registration-with-a-wix-installer/546363#546363 3 Answer by CheGueVerra for Replicating Visual Studio COM registration with a WiX Installer CheGueVerra 2009-02-13T15:30:42Z 2009-02-13T17:08:21Z <p>You should use Heat (WIX 3.0) located in the bin directory of the version you are using. Have a look at this <a href="http://installing.blogspot.com/2006/04/heatexe-making-setup-easier.html" rel="nofollow">blog</a>, we use it here to register all our COM objects, by creating a wix fragment...</p> <p>something like</p> <p>heat file MyComExposedLibrary.dll -out MyComExposedLibrary.wxs</p> <p>After, reading your edit, I would create a basic msi with wix that installs the com object only, see if that works ... then you'll know which battlefield to attack ...</p> http://stackoverflow.com/questions/1439442/how-to-determine-if-a-registry-key-exists-in-wix/1439518#1439518 Comment by CheGueVerra on How to determine if a registry key exists in Wix CheGueVerra 2009-09-18T17:27:45Z 2009-09-18T17:27:45Z If the key exists the value will change, otherwise it will stay the same. http://stackoverflow.com/questions/1439442/how-to-determine-if-a-registry-key-exists-in-wix/1439518#1439518 Comment by CheGueVerra on How to determine if a registry key exists in Wix CheGueVerra 2009-09-17T17:11:58Z 2009-09-17T17:11:58Z I would put a flag value to the property like -1, then you can check in a condition that the property is different than -1 http://stackoverflow.com/questions/1435099/is-there-a-way-to-speed-up-wix-builds/1436803#1436803 Comment by CheGueVerra on Is there a way to speed up WiX builds? CheGueVerra 2009-09-17T15:16:48Z 2009-09-17T15:16:48Z Thanks for the link http://stackoverflow.com/questions/1347958/what-would-you-do-when-you-see-a-co-programmer-is-running-into-an-alcohol-problem Comment by CheGueVerra on What would you do when you see a co-programmer is running into an alcohol problem? CheGueVerra 2009-08-28T16:07:38Z 2009-08-28T16:07:38Z Shit, I Never got that memo :P http://stackoverflow.com/questions/1312877/programmer-nerd-pick-up-lines Comment by CheGueVerra on Programmer/Nerd Pick Up Lines CheGueVerra 2009-08-21T16:21:19Z 2009-08-21T16:21:19Z Our I/O interfaces are ompatible ;) http://stackoverflow.com/questions/1306391/does-the-wix-heat-utility-work-with-visual-c-projects Comment by CheGueVerra on Does the WIX heat utility work with Visual C++ projects? CheGueVerra 2009-08-20T20:29:10Z 2009-08-20T20:29:10Z Can your VS C++ project be built using MSBuild ? http://stackoverflow.com/questions/1295539/using-wix-to-package-an-installer-with-many-files/1295648#1295648 Comment by CheGueVerra on Using WiX to package an installer with many files CheGueVerra 2009-08-18T19:39:55Z 2009-08-18T19:39:55Z The power of SO ;) http://stackoverflow.com/questions/1255878/why-does-windows-installer-display-a-popup-for-each-user-at-first-login/1255900#1255900 Comment by CheGueVerra on Why does Windows Installer display a popup for each user at first login? CheGueVerra 2009-08-11T14:01:41Z 2009-08-11T14:01:41Z I use WIX, so I can't help you with the tool you are using ... MSDN search might help you out there. http://stackoverflow.com/questions/1255878/why-does-windows-installer-display-a-popup-for-each-user-at-first-login/1255900#1255900 Comment by CheGueVerra on Why does Windows Installer display a popup for each user at first login? CheGueVerra 2009-08-11T13:14:11Z 2009-08-11T13:14:11Z I forgot about that since most of our products are per-machine ... http://stackoverflow.com/questions/1147836/unable-to-connect-to-so-from-work Comment by CheGueVerra on Unable to connect to SO from work CheGueVerra 2009-07-18T15:42:09Z 2009-07-18T15:42:09Z Even if I was told no ?? http://stackoverflow.com/questions/819722/remove-repair-option-screen-from-msi-installer/821292#821292 Comment by CheGueVerra on Remove repair option screen from MSI installer CheGueVerra 2009-05-05T16:05:45Z 2009-05-05T16:05:45Z What do you want when the end user clicks opn your MSI, when it's installed ? http://stackoverflow.com/questions/686190/how-do-i-install-an-asp-net-mvc-application-on-iis-7-using-wix/689037#689037 Comment by CheGueVerra on How do I install an ASP.Net MVC application on IIS 7 using Wix? CheGueVerra 2009-04-30T15:42:07Z 2009-04-30T15:42:07Z When uninstalling how do you take the entry out ? http://stackoverflow.com/questions/246329/wix-how-to-select-features-from-command-line/463875#463875 Comment by CheGueVerra on WIX: How to Select Features From Command Line CheGueVerra 2009-04-30T13:58:26Z 2009-04-30T13:58:26Z The msiexec command that I put was for the question asked, but I agree that you can have multiple features from the command line http://stackoverflow.com/questions/624918/using-wix-to-create-an-iis-virtual-directory/624949#624949 Comment by CheGueVerra on Using WiX to create an IIS virtual directory CheGueVerra 2009-04-28T23:52:10Z 2009-04-28T23:52:10Z Wow, nice blog entry 1+ http://stackoverflow.com/questions/787354/how-to-detect-exact-length-in-regex/787378#787378 Comment by CheGueVerra on How to detect exact length in regex CheGueVerra 2009-04-27T15:52:21Z 2009-04-27T15:52:21Z Thanks that's what I was looking for ...