Some things to consider in here.
http://spectrum.ieee.org/computing/software/why-software-fails
Tuesday, October 12, 2010
Monday, July 5, 2010
JSF java.lang.IllegalStateException: Component javax.faces.component.UIViewRoot
java.lang.IllegalStateException: Component javax.faces.component.UIViewRoot
This error can probably be resolved by adding the tags around the tags.
This error can probably be resolved by adding the
Monday, May 10, 2010
datagridviewcomboboxcell value is not valid C#
datagridviewcomboboxcell value is not valid
Fixed this error by changing the datatype in my DataTable (source) column to System.Decimal. I believe the database datatype Numeric wanted this.
Fixed this error by changing the datatype in my DataTable (source) column to System.Decimal. I believe the database datatype Numeric wanted this.
DataTable table = new DataTable();
DataColumn idColumn = new DataColumn();
idColumn.ColumnName = "id";
idColumn.DataType = Type.GetType("System.Decimal");
table.Columns.Add(idColumn);
Monday, February 8, 2010
JavaFX Ecslipe Plugin
Had some issues with Eclipse (Galileo on Windows) not locating my JavaFX SDK when trying to create a project. After some digging it seems that it currently requires the 1.2.1 JavaFX SDK which is not the most current.
Previous versions are available here:
http://java.sun.com/javafx/downloads/previous.jsp
Previous versions are available here:
http://java.sun.com/javafx/downloads/previous.jsp
Subscribe to:
Posts (Atom)