New Post: Changing icon in top left corner of forms
You can do this by accessing the shell form when UI is loaded. Changing the icon is a typical WinForm task and a simple way to accomplish it is to embed your icon in the assembly resources and extract...
View ArticleNew Post: Sample for "Modifying app config file as a post-install action"
Hi, I have tried this modification method but custom action OnInstall is not getting executed. Hence the file is copied as it is. Could u please help? Thanks
View ArticleNew Post: FeaturesDialog does not work
Thank you for your replay! The codeproject.MinimalCustomDrawing = true; have fixed the situation.... Now the msi works without exception. so strange behavior.... Below is my code:using System; using...
View ArticleNew Post: FeaturesDialog and MinimalCustomDrawing = false;
Hi, do we have the chance of using the FeaturesDialog with the MinimalCustomDrawing = false? In current release it generate the exception in final msi.
View ArticleNew Post: FeaturesDialog does not work
I tested your code. And it seems to have no problems rendering the TreeView on my system (Win10 x64). It's kinda expected as everything indicated it was a pure rendering problem, which doesn't depend...
View ArticleNew Post: post-install action in ManagedProject
Hi, Oleg! Now I use v1.0.40.2-HotFix. In custom dialog I set: MsiRuntime.Data["DATABASE_CONNECTION_STRING"] = @"Data Source=.\SQLEXPRESS;Initial Catalog=RequestManagement;Integrated Security=SSPI"....
View ArticleNew Post: post-install action in ManagedProject
OK I see. MsiRuntime.Data at runtime is serialized into semicolon delimited key-value pares and because MSSQL is using the same encoding technique for connection strings it interferes with the Wix#...
View ArticleNew Post: FeaturesDialog does not work
I checked the source code and the impact of MinimalCustomDrawing = true is even less than I anticipated. It is in fact a check box who gets grayed out if the node is a read-only one, not the text. Thus...
View ArticleNew Post: post-install action in ManagedProject
Can you please test the latest NuGet release v1.0.40.3Install-Package WixSharp.bin -Pre It should do the escaping/unescaping automatically
View ArticleNew Post: FeaturesDialog does not work
The latest NuGet prerelease v1.0.40.3Install-Package WixSharp.bin -Pre does the trick with automatic fallback to the minimized custom drawing in case of any runtime error in the drawing routine. Note...
View ArticleNew Post: FeaturesDialog does not work
Oleg, I am trying new (1.0.40.3) version. The result: With previous (1.0.40.2) version the project works.
View ArticleNew Post: FeaturesDialog does not work
Yeah, I sent you the message about that yesterday but it somehow didn't go through. You see, when working on your problem report I discovered that there is a logical flaw in the feature hierarchy...
View ArticleNew Post: FeaturesDialog does not work
Oleg, thank you for your FAST reply! I have removed the following part of code:project.DefaultFeature.Children.Add(modulet0); ... project.DefaultFeature.Children.Add(modulet1); The project works but no...
View ArticleNew Post: FeaturesDialog does not work
It's hard for me to comment as I have very little information about how you conduct your testing. I know for sure that the code you shared with me is not exactly the same the code you test. I conclude...
View ArticleNew Post: FeaturesDialog does not work
Oleg, your test case works well! sorry, I have found the error in my project.... and have fixed it. now it works fine also. no problem with your new (10.0.40.3) build thank you!
View ArticleNew Post: FeaturesDialog does not work
Great. Thank you. Now I will be making a proper release.
View ArticleNew Post: FeaturesDialog and "Back" action
Hi Oleg, I am afraid the back action does not work correctly. 1) The Back button is always disabled 2) After return back to FeaturesDialog the feature tree recreated incorrectly
View Article