When running patch.exe on windows error: Assertion failed, hunk, file patch.c
Add the --binary option when running patch.exe.
Agile Development Practices suggest developers keep a solutions log. I think we can all benefit from a combined solutions log. As I encounter errors or problems I intend to record the solutions on this blog. Please feel to leave your comments, solutions and email me with your errors and solutions.
Jul 21, 2009
Jul 17, 2009
Flex Underline Links in a TextArea Component
import flash.text.StyleSheet;
private function init():void {
var ss:StyleSheet = new StyleSheet;
// Define an object for the "hover" state of the "a" tag.
var hoverStyles:Object = new Object;
hoverStyles.textDecoration = "underline";
hoverStyles.color = "#FF00CC";
// Define an object for the non-hover state of the "a" tag.
var linkStyles:Object = new Object;
linkStyles.color = "#FF00CC";
// Apply the newly defined styles.
ss.setStyle("a:hover", hoverStyles);
ss.setStyle("a", linkStyles);
// Apply the StyleSheet to the TextArea control.
myTA.styleSheet = ss;
}
Jul 13, 2009
Jul 12, 2009
Turn off Script Debugging in Internet Explorer
Description:
The following message pops up in Internet Explorer:
A Runtime Error has Occurred. Do you wish to Debug?
Solution:
Click on the "Tools" Menu in Internet Explorer
Select "Internet Options"
Under the "Browsing" section
Check the "Disable Script Debugging" Checkbox
The following message pops up in Internet Explorer:
A Runtime Error has Occurred. Do you wish to Debug?
Solution:
Click on the "Tools" Menu in Internet Explorer
Select "Internet Options"
Under the "Browsing" section
Check the "Disable Script Debugging" Checkbox
Jul 8, 2009
Jul 1, 2009
mvn site commons.logging errror
Links related to the mvn site error message:
Invalid class loader hierarchy. You have more than one version of 'org.apache.commons.logging.Log' visible, which is not allowed.
http://jira.codehaus.org/browse/MOJO-1101
http://mojo.codehaus.org/dashboard-maven-plugin/faq.html#Maven_2.0.9_problem
Invalid class loader hierarchy. You have more than one version of 'org.apache.commons.logging.Log' visible, which is not allowed.
http://jira.codehaus.org/browse/MOJO-1101
http://mojo.codehaus.org/dashboard-maven-plugin/faq.html#Maven_2.0.9_problem
Subscribe to:
Posts (Atom)