476 reputation
313
bio website
location
age 26
visits member for 2 years, 6 months
seen May 21 at 23:53
stats profile views 17

Mar
11
awarded  Informed
Mar
11
awarded  Constituent
Mar
6
awarded  Caucus
Feb
1
comment Multiple mouses connected to computer, how to determine the exact mouse that triggered the event in Applet?
I guess that would be very low level. Have you considered checking which mouse button was pressed (player1 = left click, player2 = right click)?
Nov
25
awarded  Yearling
Oct
4
comment Custom Zk Combobox
I would look into Macro Components, maybe putting an Image right before the Combobox and updating it according to the selected item (onSelect).
Sep
19
comment How to enable syntax highlighting in Eclipe Indigo?
What editor is it using? Have you checked in Preferences -> General -> Editors -> File Associations?
Sep
13
answered Adding two inputs
Sep
5
comment “mysqld” root access denied
IIRC root@'%' is not the same as root@'localhost', have you checked the permissions on localhost?
Sep
4
comment JPQL Constructor Expression - org.hibernate.hql.ast.QuerySyntaxException:Table is not mapped
Aren't you using createQuery(String, Class) instead of createNativeQuery(String, Class)? I think JPA is expecting TableA to be a model class, instead of using it as a table name.
Aug
31
answered Writing file in web Server without specifying real path
Aug
31
comment Java exception while attempting socket connection
It's probably a network problem. Can you ping the server from the second host, and viceversa?
Aug
31
answered use entitymanager to load collections eagerly
Aug
30
awarded  Critic
Aug
30
awarded  Revival
Aug
27
comment calling Java variable in HTML tag
Since the OP is already using an StringBuffer, I would put it like this instead: sb.append("<td title='").append(t.getValue("block_type_desc")).append("'>");
Aug
24
comment code too large for try statement and code too large for main error Java
Maybe if you post the entire method here we could give you a better advice! just kidding!
Aug
24
comment How to run my Java+Glassfish+JavaDB webapp outside of Netbeans
Google is your friend glassfish.java.net/docs/3.1.1/quick-start-guide.pdf
Aug
24
answered java package does not exist and bad source file
Aug
24
comment How to turn my computer into a webserver and use a Java webapp created using Netbeans
Right, use your public IP then. You can configure GlassFish to run on either port, just make sure is open in your firewall.