Uncategorized

Project Euler

If you plan on learning a new programming language, one good way to get to know the language better is by using it to solve […]

.NET, C#

Multi-color Text in ProgressBar

The standard ProgressBar class provided by the .NET Framework does not have a way to write custom text over the progress bar. However, it can […]

Java

Executing private methods in Java

Normally, private methods in a class are not visible to other classes and cannot be executed. However, through reflection, which enables dynamic retrieval of classes […]

.NET, C#

RichTextBox CR/LF Text issues

It seems that sometimes when you get the text from a RichTextBox object, for instance to put it on the Clipboard, that the carriage return/line […]

.NET, C#

targetNamespace issue with XmlSchemaSet

When attempting to validate your XML Document against a schema file in .NET, you might see the following error message: [System.Xml.Schema.XmlSchemaException] = {“The targetNamespace parameter […]