User jl23x - Stack Overflowmost recent 30 from stackoverflow.com2009-12-04T10:37:10Zhttp://stackoverflow.com/feeds/user/2143http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/8749/printing-a-pdf-in-net/21181#211810Answer by jl23x for Printing a PDF in .NETjl23x2008-08-21T21:03:20Z2008-08-21T21:03:20Z<p>I been using ABC PDF for convert html to PDF, but I think the redistribution license is very expensive ($4790 USD, we use the professional license), it works just fine.</p>
<p>Also I found this article in code project, who implements a windows service, .Net remoting and open office in a service-oriented architecture.</p>
<p><a href="http://www.codeproject.com/KB/files/generatepdf.aspx" rel="nofollow"><a href="http://www.codeproject.com/KB/files/generatepdf.aspx" rel="nofollow">http://www.codeproject.com/KB/files/generatepdf.aspx</a></a></p>
http://stackoverflow.com/questions/20658/determine-if-my-pc-supports-hw-virtualization/20673#206730Answer by jl23x for Determine if my PC supports HW Virtualizationjl23x2008-08-21T18:01:28Z2008-08-21T18:01:28Z<p>You can take a look in the BIOS of the machine. It indicates if the machine supports hardware virtualization.
You can run programs like virtual pc even if you machine does not support HW virtualization, but if the machine supports it the program take advantage of this extensions.</p>
http://stackoverflow.com/questions/20627/why-are-downloads-sometimes-tagged-md5-sha1-and-other-hash-indicators/20654#206540Answer by jl23x for why are downloads sometimes tagged md5, sha1 and other hash indicators?jl23x2008-08-21T17:48:03Z2008-08-21T17:48:03Z<p>With a has (MD5, SHA-1) one input matches only with one output, and then if you down load the file and calculate the hash again should obtain the same output.
If the output is different the file is corrupt.</p>
<pre><code>If (hash(file) == “Hash in page”)
validFile = true;
else
validFile = false;
</code></pre>
http://stackoverflow.com/questions/20507/give-me-awesome-visual-studio-keyboard-short-cuts/20594#205943Answer by jl23x for Give me awesome Visual Studio keyboard short cuts!jl23x2008-08-21T17:24:41Z2008-08-21T17:24:41Z<p>This actually is not a short cut but in the site:</p>
<p><a href="http://blogs.msdn.com/saraford/" rel="nofollow"><a href="http://blogs.msdn.com/saraford/" rel="nofollow">http://blogs.msdn.com/saraford/</a></a></p>
<p>Sara Ford posts a lot of small tips about Visual Studio IDE.</p>
<p>Also one very important short cut Ctrl + S, save the current document and your job ;-)</p>
http://stackoverflow.com/questions/20168/c-application-detected-as-a-virus/20234#202340Answer by jl23x for C# application detected as a virusjl23x2008-08-21T15:27:25Z2008-08-21T15:27:25Z<p>I don’t know “Avast”, but in Kaspersky if the configuration is set to high almost every installer fires an alarm (iTunes, Windows Update, everything) especially if the installer modify some registry key or open a port.
If avast checks for behavior and your program open a port probably that’s be the cause.</p>
http://stackoverflow.com/questions/20059/suggestions-on-starting-a-child-programming/20115#201152Answer by jl23x for Suggestions on starting a child programming.jl23x2008-08-21T14:37:51Z2008-08-21T14:37:51Z<p>I think python is a good alternative; it is a very powerful language also you can easily do a lot of things (not boring at all).</p>
http://stackoverflow.com/questions/18097/in-c-do-you-need-to-call-the-base-constructor/18196#18196-2Answer by jl23x for In C#, do you need to call the base constructor?jl23x2008-08-20T15:14:37Z2008-08-20T15:14:37Z<p>You don’t need call the base constructor explicitly it will be implicitly called, but sometimes you need pass parameters to the constructor in that case you can do something like:</p>
<pre><code>using System;
namespace StackOverflow.Examples
{
class Program
{
static void Main(string[] args)
{
NewClass foo = new NewClass("parameter1","parameter2");
Console.WriteLine(foo.GetUpperParameter());
Console.ReadKey();
}
}
interface IClass
{
string GetUpperParameter();
}
class BaseClass : IClass
{
private string parameter;
public BaseClass (string someParameter)
{
this.parameter = someParameter;
}
public string GetUpperParameter()
{
return this.parameter.ToUpper();
}
}
class NewClass : IClass
{
private BaseClass internalClass;
private string newParameter;
public NewClass (string someParameter, string newParameter)
{
this.internalClass = new BaseClass(someParameter);
this.newParameter = newParameter;
}
public string GetUpperParameter()
{
return this.internalClass.GetUpperParameter() + this.newParameter.ToUpper();
}
}
}
</code></pre>
<p>Note: If someone knows a better solution please tells me.</p>