hello i am bit confused that how can i use java cap i have netbeans 6.0.1 it it necessary to have netbeans 6.1 to use cap
and secondly how to use the CAP
i am new to java hope fully i'll find good support here
thanx in advance.
...
i cannot see JBI in services tab of my netbeans 6.0.1 i have started glassfish v2 but it only shows applications, resources and jvms.
is there some thing wrong ??
how can i find JBI is installed or not and how can i install it to my netbeans 6.0.1
i am new to java and help required
thanx in advance
...
I am really new to c++ and am using Netbeans for now.
I managed to create a Sign.h and Sign.cpp containing a working class Sign.
I added these to a Console Project and it works great:
#include <iostream>
#include <ostream>
#include "Sign.h"
int main()
{
Sign sign = Sign::parse("b");
std::cout << sign.toString() <...
i am looking for tips (eg. keyboard shortcuts/features/tips) that you use to speed up development in netbeans.
i mainly develop in
HTML, CSS, JS (jQuery)
PHP
so specific to those will be great
...
Will netbeans 6.9 (and whatever else I'll need for Java development - JVM, mysql, etc.) install under the 64 bit version of Windows 7 professional? The netbeans website says (well, implies) it's untested. Need to know if I need to reinstall 32 bit Windows 7 before a Java class starting tomorrow. Thanks for any help.
Update: went ahea...
Hi
Is there a possible way to override the paintComponent() method in the auto-generated GUI code in NetBeans?
I managed to manually draw a graph without using the drag-and-drop components, and I need to make adjustments (e.g. adding radio button group) which I find really time consuming and tedious work.
I created a GUI using the Net...
Hello Experts !
Last week i read about liquibase quick start and all the related tutorials but i feel like i don't get the whole drift about using it for consecutive change in the database and i have some questions still opened.
i'm developing an application in netbeans using maven with 3 modules: dbunit module, service module a...
I was going to use both JOGL and NetBeans platform. I have trouble embedding JOGL native libs. Maybe there is a simple way to reuse .nbms from NetBeans OpenGL Plugin? Or any other way to do this?
...
They have this very cool drag and drop thing that creates GUI on the fly. But I don't get to learn anything out from this method and I feel guilty about it. Do most of the Java programmers use this method? Because realizing the code it generates, it's quite impractical coding the GUI by hand IMO.
...
Hi all,
please can you give sample example for stripes framework using netbeans IDE.
...
How to create a JTable without vertical and horizontal lines in it...
...
I have Xdebug 2.1 installed, and running with PHP 5.2.13. It can successfully connect to multiple DBGP clients (i.e. the xdebug.remote_log shows communication back and forth, and the clients themselves also show the incoming connection), but it doesn't stop at breakpoints. I have tried NetBeans, MacGDBp and also the command-line debugc...
Hi,
I'm trying to refer to a properties file in my NetBeans project using Maven.
While developing, I used the following code:
MyClass.loadProperties("src/main/resources/neo4j.properties");
This worked fine.
Now that I've just built my project to a JAR, when I execute it, it complains that it can't find this file.
I don't want the ...
Hi,
When i work with NetBeans 6.9 for PHP the javaw.exe is occupying more then 50% of CPU and about 450mb ram (ram is not really the problem) but CPU tend to overheat.
I had jdk6.5 for 64bit sys and now updated to latest jdk6.21 but it is the same, the CPU is always near 100%
is there a solution to this high requirements of javaw.ex...
This is happening in hibernate, but not a hibernate problem. I'm seeing this with the default XML editor for Netbeans 6.9
We do a little trick to avoid a bunch of boiler plate in our hibernate files:
<!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hibernate Mapping DTD 3.0//EN" "http://hibernate.sourceforge.net/hibernate-mapping-3.0....
I am using PHP 5.3 on Ubuntu 10.0.4.
I recently upgraded from PHP 5.2 + Netbeans 6.8, where debugging worked fine. Currently, when I am debugging, only SOME variables are available - in some statements (for e.g), where a non-null value is being assigned to a LHS variable, the variable does not appear in the variables window - even thoug...
I downloaded JTattoo.jar for the look and feel of my application. However I am confused, is the look-and-feel concept a run-time issue (I will only see the JTattoo look and feel when I run the application but not on the Designer)?? or can I have the components added in the Palette so I can drag and drop the components??
Can you provide ...
Netbeans has this wiki entry on line endings: http://wiki.netbeans.org/FaqEditorEOLs
But it isn't very useful. It just says that you shouldn't develop on different OS and that's that...
In my situation however, I have no power over it. I'm on a windows machine and the PHP app I'm working on needs to end with the UNIX EOL.
There does n...
I'm using NetBeans IDE 6.9 (Build 201006101454), and wrote this simple Java class (that doesn't do anything):
public class SomeClass {
int someInt;
}
The variable "someInt" shows up in green. When I highlight and hover over it, a tool tip box appears that says:
someInt = >"someInt" is not a known variable in the current con...
Hi everybody,
Assume the following project setup in Netbeans
Project A
depending on
Project B
depending on
lib/projectBLib.jar
In my current setup, I have to tell Project A that it depends on projectBLib.jar, otherwise it is not loaded.
I would have expected Netbeans to handle dependency chains for me (as other IDEs do). So am I doing...