netbeans

I have a Netbeans project written in Java which uses commons codec. I get next error.

What is the problem(package org.apache.commons.codec.binary.Base64 does not exist.)? ...

opencv not working with NetBeans

I am trying to write this simple image modifier program in c++ with opencv on netbeans. I am using ubuntu 10.04. Everytime I try to run or compile it, it returns the below errors. I have opencv configured in the linker and the additional tools. What is going wrong? include stdlib.h include stdio.h include math.h include cv.h inc...

NetBeans GUI designer - editor skin/theme

Hello. I'm creating Java Web Applet in NetBeans and I want my final application to have design named "Metal". I can set it, it's OK. But when I'm editing the GUI using "NetBeans GUI editor" I must work with typical Windows design. Is it possible to use "Metal" skin in editor too? Each design has different sizes of buttons, fonts etc.. S...

Remote system development of C/C++ in Eclipse|Netbeans

Hi all, I am trying to use Eclipse|NetBeans for Remote System Development in Solaris. What I exactly want is: Use these IDE to Build,Debug and CheckIn purpose using Solaris C/C++ compiler and dbx debugger. I want to create the file in solaris from IDE compile and debug in IDE finaly checkIn using IDE. What I have achieved(only in NetBe...

PHP Netbeans: xdebug stops on every include() or require()

Hi! I've just discovered PHP debugging using xdebug integrated in netbeans IDE and I think it's great! how did I live without it? :) But there's one problem: if I set a breakpoint deep in my code, I have to press "Continue" (F5) several times before I get to a breakpoint, because script stops at every include() and require() functions....

Is there a way to make Netbeans file uploads not fail on a single error?

Is there a way to make Netbeans's FTP uploads less error sensitive(reconnect and retry on error)? It is simply unable to handle large amounts of files. If I upload 1000 files and there is some sort of failure at the 400th file, it will fail for the rest of the files, and it will not record the files that failed. So I will have to upload...

What is the css / html `root` element?

I have just recently started using NetBeans IDE (6.9.1) and have used it to add a stylesheet to my site-in-progress. To my surprise, one element was automatically added: root { display: block; } Looking around, I could find some information about the :root pseudo-class but nothing about the root element itself. What is the root...

using Boolean Object

i'm having issues trying to get the result I wish. Basically what I want to do is have a Boolean object which will allow me to have 3 choices, if a mailer is old i want it to be set to false (meaning does not contain "mapQ.cmd" and "add-coid.cmd" file) if a mailer is new I want it to set to true (if it is new it will contain "mapQ.cmd" ...

Rails application runs from terminal but not from Netbeans - missing gem error

Hello! Been trying to get my project up and running on an Ubuntu Virtual Box machine. Everything works fine from the terminal, but when I try to run my application from Netbeans I get the following error: => Booting WEBrick => Rails 2.3.5 application starting on http://0.0.0.0:3000 /home/soroush/.gem/ruby/1.8/gems/rails-2.3.5/lib/rails...

Java - Leaking this in constructor

I'd like to avoid (most of the) warnings of Netbeans 6.9.1, and I have a problem with the 'Leaking this in constructor' warning. I understand the problem, calling a method in the constructor and passing "this" is dangerous, since "this" may not have been fully initialized. It was easy to fix the warning in my singleton classes, because...

Java bean image property editor in netbeans

Hi all, im trying to build a java bean component using JPanel that can display a background. All is ok, but now i have an image property and i would be able to set it from property editor. Netbeans has a good image property editor used to set JLabel Icon etc... so, there is a way to use this editor for my porpouse? Thanks. ...

Solved: Where is the 64 bit NetBeans Design GUI?

I had to replace jre and jdk 32 versions with 64 bit version since I am developing on a 64 bit machine and needed to get serial IO working. The 64 bit NetBeans Design GUI seems to have vanished since I upgraded from 32 to 64 bit. ...

Use java source dirs from ant build.xml to configure Netbeans project

I have an existing java project with an ant build.xml and I'm trying to use Netbeans as my IDE. In Netbeans I've created a new java free form project and pointed it at my ant file. This works fine for building, running, etc. However code completion does not work unless I manually add all the java sources for my project (that are alread...

jsplitpane in netbeans

Hi, I am trying to use a JSplitPane in Netbeans 6.9.1, but I can not configure it properly for some reason. E.g. I add a jtree and a jtable in a jframe. Then I use "enclose in splitpane". Then I set the orientation to vertical (from horizontal). Problem, when I try to adjust the divider location, I can not place it where I want. Either ...

Bean Properties Editor/Sheet like Netbeans'

I want to develop a GUI-based java bean property editor(like the one used to edit bean properties in netbeans). Is there any open source java implementation of this? ...

Select which method to "Step Into" in debugger

Netbeans has a nice "Step Into" feature where if there are multiple method calls on the same line, you can use the arrow keys to choose which one you meant. You can see a screenshot and description on this new and noteworthy page. I am wondering, does Eclipse have the same feature? I see that Eclipse does have Step Filtering, but that's...

How to package all my dependency JAR libraries in 1 jar with NetBeans?

I want to build and develop with NetBeans. How can I make Clean + Build operation to generate a single .jar which includes - all my class files - all dependency jars in a "/lib/" folder inside the BIG.JAR I saw there are some scripts and xml-s in the NetBeans project, but could somebody tell me how to do it correctly. Best Regards, L...

Javascript debugger plugin for Netbeans 6.9

How do I install Javascript debugger plugin for netbeans 6.9. I installed it today but cannot find support for javascript debugging. In the tools/plugins dialog, it is not listed anywhere. I am new to netbeans and I have fedora 13 64bit. ...

Netbeans Code Complete not activating when looping through array of objects

In my Netbeans PHP projects, I recently started stuffing custom objects into arrays in order to increase performance. I found its much faster to query the database and get a bunch of objects all at once instead of querying over and over again. I love the new approach, except when I loop through the array and try to access each of the...

Show grails test results in Netbeans IDE

Hi, does anybody know a possibility to show the Unit-Test results of a grails project in the "Test Result"-Window of the netbeans IDE? The test results are saved in the project folder as JUnit XML Files. ...