The Netbeans plugin has a little design preview window (Alt+Shift+P), every time you apply changes to the fx file it will be reflected in the preview window (as long it is compelete and executable). With the last version of the JavaFX Kit plugin (version 1.7) that does not work anymore. There is still the preview but it renders the previ...
When I try to put the applet online, I go to the jsp page that loads it and get Error. Click for more details. When I click for more details, I get ...
Java Plug-in 1.6.0_11
Using JRE version 1.6.0_11 Java HotSpot(TM) Client VM
User home directory = C:\Documents and Settings\gdf5010
c: clear console window
f: finalize objects on...
I want to ask if there is a way to make the text field active and inactive according to the radio button.
For example, the textfield will be inactive and when the user click on the radio button, the textfield will be active.
I am using Java language and NetBeans program
...
I'd like for Netbeans to deploy directly into an exploded ear in JBoss, instead of the current process of deploying a whole .ear file. Development would be much quicker if it were possible to edit .jsps and backing beans without a redeploy after each change.
Is this possible?
...
... or perhaps a way to launch NetBeans through a middle-man app and open up a BASE and LOCAL file in the DIFF editor ...
...
When compiling a simple Netbeans C project that uses sockets I get the following output.
I supose the problem is that gcc is not properly linking sockets.h library.
Need a foolprof method to solve this.
Thanks i advance
Running "/usr/bin/make -f Makefile CONF=Debug clean" in /export/home/manu/Escritorio/TP-entrega 2/Application_1
/usr...
Hi,
I have created a project using Netbeans with glassfish. It is a java ee and I have created some ejbs. I need to run this on Apache Geronimo but I don't know how to do this.
Any pointers?
thx
...
My company wants to migrate to Eclipse, I was wondering what options besides an Ant build are there to move our projects from Netbeans to Eclipse.
...
I created a new project thus ...
File, New Project...
Java, Java Application.
Right-click project icon in "Projects" tree-view panel.
Choose New, Web Service Client...
Specify WSDL file e.g.
( ) Project
(*) Local file D:\temp\Foo\Bar.wsdl
( ) WSDL URL [Set Proxy...]
client...
I am using NetBeans 6.7 Beta to create entity classes from a MySQL (version '5.0.45-log') database. NetBeans accepts most tables, but rejects certain ones consistently (I can't see a pattern), saying they have "no primary key". All tables are using the InnoDB engine. All tables have primary keys of one or more columns. The MySQL query br...
Using NetBeans, I do the following in the class containing main(), and it works:
import javax.ejb.EJB;
public class Master {
@EJB
TestBeanARemote x;
public static void main(String[] args) {
Master m = new Master();
m.doStuff();
}
//doStuff includes x, but it works, so who cares.
...
If I do that in a ...
I've been using Netbeans for Rails and like it a lot, considering how little I paid for it. But something that bothers me is that when I'm editing an RHTML or ERB file, it doesn't do the code autocomplete - or at least not reliably. Sometimes it shows the appropriate variables and methods that are available on an object after you type th...
I am using EclipseMe on Ubuntu. I want an emulator that can emulate mouse movements on screen.
Is there an s60 emulator for linux?
Edit:
Does net beans has an in built emulator that can emulate mouse movement on device screen?
...
Hi,
I'd like to start using iReport (netbeans edition) and replace the good old classic iReport 3.0.x. Seems like the classic iReport won't be improved anymore and abandoned at some point.
The point is that I need to start iReport from another java application. With iReport 3.0 it was pretty easy and straightforward: just invoke it.bu...
I've tried everything from reading the Netbeans help to browsing Google.
This code works fine in Dev-Cpp but not Netbeans 6.5.1. Netveans also places and exclamation mark next to #include <iostream> which i checked and is in the include path of netbeans and is in the include folder:
#include <iostream>
int main() {
std::cout << "Te...
Is there a way to automatically generate source and javadoc jars in Netbeans? Ideally I would like to place jars of my source and JavaDoc in the dist folder each time i build.
...
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 data from the database correctly.
Now, I'm ready to move it to the production server. Aga...
I use Firefox as default browser in my computer.
I need to develop the web application(JSP) project in Netbeans 6.5 and everytime I run the project, it run in Firefox.
I want to run my web application in IE for testing but not change my default web browser.
...
Hello to all
I have some code in Netbeans 6.1 editor that looks like this
fooString(8)
fooString(8)
fooString(8)
fooString(8)
foostring2(8)
foostring3(8)
foostring4(8)
foostring5(8)
foostring6(8)
foostring7(8)
foostring7(9)
foostring7(10)
foostring7(11)
foostring7(12)
and i want to convert it to
fooString(1...
I created a simple netbeans plugin (see this tutorial) and now i wanna test e.g. the Actionlistener.
But how can this be done ?
to be more specific
what test frameworks suit netbeans plugin development ?
how to create a test setup which emulates enough of netbeans e.g. to test the simple actionlistener ?
Update
a practical example...