Posts by Jader Dias • 223 points
5 posts
-
1
votes1
answer181
viewsA: How to copy files to Programdata folder using Wix?
The problem was that AppDataFolder is a reserved word, I just had to exchange this ID and it worked: <Directory Id="CommonAppDataFolder"> <Directory Id="CommonAppDataManufacturerFolder"…
-
2
votes1
answer181
viewsQ: How to copy files to Programdata folder using Wix?
I create the directory on Wix <Directory Id="CommonAppDataFolder"> <Directory Id="CommonAppDataManufacturerFolder" Name="$(var.MANUFACTURER)"> <Directory Id="AppDataFolder"…
-
1
votes2
answers599
viewsA: How to update backgroundWorker.Reportprogress() through a class in another project?
It’s simple, you have to pass the reportProgress method as parameter class FormView { private void Something_DoWork(object sender, DoWorkEventArgs e) { new ModelClass().Insert((sender as…
-
0
votes1
answer903
viewsQ: How to make one file redirect to another?
A HTTPS page of mine is requiring me to only link to HTTPS resources. Otherwise, HTTPS warning messages appear. I wanted it to be possible to download a file from the site, without appearing any…
-
7
votes3
answers13134
viewsQ: How to make a dowload inline file available in html?
I wanted to create a link to a dowload in my HTML, but I didn’t want to save this content in a separate file, but in the html itself. In images you can do something like this <img alt="Embedded…
htmlasked Jader Dias 223