How do I convert Word files to PDF programmatically? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers. We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations. Closed 2 years ago. The community reviewed whether to reopen this question 4 … Read more

HTML encoding issues – “” character showing up instead of ” “

I’ve got a legacy app just starting to misbehave, for whatever reason I’m not sure. It generates a bunch of HTML that gets turned into PDF reports by ActivePDF. The process works like this: Pull an HTML template from a DB with tokens in it to be replaced (e.g. “~CompanyName~”, “~CustomerName~”, etc.) Replace the tokens … Read more

What is the best workaround for the WCF client `using` block issue?

I like instantiating my WCF service clients within a using block as it’s pretty much the standard way to use resources that implement IDisposable: using (var client = new SomeWCFServiceClient()) { //Do something with the client } But, as noted in this MSDN article, wrapping a WCF client in a using block could mask any … Read more