Questions tagged [netbeans6.5]

It is the version 6.5 of Netbeans IDE for java application development.

NetBeans refers to both a platform framework for Java desktop applications, and an integrated development environment (IDE) for developing with Java, JavaScript, PHP, Python, Groovy, C, C++, Scala, Clojure, and others. The NetBeans IDE 7.0 no longer supports Ruby and Ruby on Rails.

The NetBeans IDE is written in Java and can run anywhere a JVM is installed, including Windows, Mac OS, Linux, and Solaris.

87 questions
2
votes
1 answer

JComboBox getSelectedItem() not changing

I'm binding a JComboBox to an observable List. I clear and add Objects form the observable list. This works fine and reflects the changes in the JComboBox correctly. The problem is I can't select the content of the list using the mouse although the…
Dupdroid
  • 125
  • 2
  • 14
1
vote
2 answers

SVG error in my j2me NetBeans6.5 project

I use svgForms, svgMenus and svgSplashScreen, but one annoying error always appears in the pre verification (last) step, which is the following: Error preverifying class org.w3c.dom.svg.SVGElement java/lang/NoClassDefFoundError:…
MrmacHD
1
vote
1 answer

NetBeans - How to Build Project jar file with all required libraries

I've tried to build my project with NetBeans 6.5; The thing is the project contains external jars added so I need them all being placed into my jar file (because it is to be signed); but IDE just places project classes in the jar :( So my question…
user592704
  • 3,674
  • 11
  • 70
  • 107
1
vote
1 answer

Netbeans 6.5 prevents adding breakpoints to Java files. Configuration issue?

I'm not able to add breakpoints to any Java file. It seems this problem has been reported in slightly varying contexts in the netbeans issuezilla. I could not find any concrete workarounds other than updgrade to NB6.7M2, which is currently not…
StudioEvoque
  • 902
  • 2
  • 9
  • 14
1
vote
1 answer

Running Tomcat from NetBeans

I have installed Apache Tomcat and then I installed NetBeans. Then I added the Tomcat instance to NetBeans servers. Whe I try to run the server from NetBeans, something goes wrong.. Server starts and is running, but NetBeans does not know that and…
Martin Lazar
  • 1,330
  • 16
  • 24
1
vote
1 answer

which is the best way of linking two forms by use of a Jbutton

I am having a JFrame Form as my main page with some JButtons. I want, if i click a JButton, another JFrame Form will appear and also find a way to navigate back to my main page from the opened Jframe Form. What is the best way to achieve this? My…
mnmyles
  • 75
  • 1
  • 6
1
vote
3 answers

From Netbeans Dev to Tomcat Production: DB Connection Not Found

I developed a Java web application in Netbeans 6.5 using a MySQL database and Hibernate. Both the development database server and development application server (Tomcat 6) reside on my development machine. Everything works; the application pulls…
1
vote
1 answer

Netbeans incompatible types question

I am getting the following warning in Netbeans: incompatible types found : carPackage.port.search required : carPackage.SearchResponse In my JSP page, I have the following code: CarService service = new CarService(); CarPort port =…
Lycana
  • 1,154
  • 4
  • 10
  • 17
1
vote
1 answer

In IDE NetBeans For Java Debugging

While using eclipse we have a short cut key ctrl + Shift + i to get the selected object values in debug mode. But I am not able to find out any such short cut key in NetBeans IDE. If any body knows that how to know the selected object value in debug…
subodh
  • 6,136
  • 12
  • 51
  • 73
1
vote
2 answers

Can I make a GUI using NetBeans but implement functionality using C?

I want to use NetBeans to build the GUI for my project, but implement the functionality using C code. Is there any way I can make the C code run when a button in the GUI is clicked?
cleo pinto
1
vote
3 answers

Compile iReport 4.0.2 from sources with NetBeans 6.5.1 java.io.IOException

I am trying to compile iReport 4.0.2 with NetBeans 6.5.1. On the iReport forums it says that this is the NetBeans platform to which it is compatible. However, I get this error when compiling the project: C:\Program Files\NetBeans…
Jenny Smith
  • 2,987
  • 6
  • 29
  • 32
1
vote
3 answers

using buttons in netbeans gui frame

Ok, so I'm pretty noob at JAVA, and programming in general really. I'm trying to make a rock, paper, scissors app that with run with a GUI interface. What I'm trying is the simplest thing I thought of, press a button for your choice (r, p, or s)…
Marcus
1
vote
0 answers

Is there a "reverse statement" feature in Netbeans?

Is there a feature or plugin which can change these statements x = y; jTextField1.setText(entity.getValue()); ... into these: y = x; entity.setValue(jTextField1.getText()); ...
Daniel Rikowski
  • 71,375
  • 57
  • 251
  • 329
1
vote
4 answers

jaxWS issue on Netbeans 6.5 and Glassfish V2

i am not able to build Web Service Client, it is showing an error msg :You are running on JDK6 which comes with JAX-WS 2.1 API, but this tool requires JAX-WS 2.2 API. Use the endorsed standards override mechanism…
kavi
  • 11
  • 2
1
vote
3 answers

How to conditionalize GUI tests using Netbeans/Maven vs maven on command line invocation

I'd like to have a single project pom but have my GUI tests always run when I'm invoking JUnit on Netbeans, but have them conditional (on an environment variable?) when building on the command line (usually for production build - on a headless…
Ilane
  • 484
  • 7
  • 18