netbeans6.1

Problems with sound on a 6265i Nokia using J2ME and Netbeans 6.1

Currently, I have some basic code to play a simple tone whenever a button is pressed in the command item menu. Using: Manager.playTone(note, duration, volume); I also have a blackberry that I'm testing this same midlet on and the sound works fine. So, is this something specific to Nokia phones that aren't allowing me to play the sound...

How do I configure the place of the Netbeans .netbeans directory?

I want Netbeans 6.1 to store the .netbeans directory in another place than the default. How do I do this? ...

Attach Javadoc to Library in NetBeans

I'm new to using the NetBeans IDE. When I try to look at the documentation for say the java API (example, System class), it says that the javadoc is not installed. How do I install the documentation? ...

Netbeans 6.1 (!5.5.1) - Turn off - wavy red underlines - How?

How can I turn off the wavy red underlines in Netbeans? I don't want to be interrupted while I'm typing, and told that a half finished line of code is wrong. ...

Can Paradox 4.5 be set up on a server?

I have established a link using Netbeans and Paradox driver and can query the database. Can Paradox 4.5 (Borland) be set up on a server so that the database can be queried remotely? Please point me in the right direction. Thanks! ...

Netbeans subversion form error

Well i'm having a problem which appeared i think when i rollbacked a .form file from subversion. The NB 6.1 can open the .form but when i try to save the file the IDE throws an out of memory exception. In NB 6.5 i can open and save the file but the IDE is behaving very strange:every 1 min or so freezes for 20 sec and then unfreezes. O...

Why wont my JFrame hide ?

I'm in the process of creating a GUI in Netbeans 6.1 for my senior design project but i've run into an annoying snag. Temporary Windows like my login PopUp and others wont disappear when i tell it. I've been researching how to solve this for about 2 months on an off. I've even mad a separate thread for my Pop Up but it still wont work...

Netbeans IDE Problem

What does the following problem in NetBeans 6.1 IDE stands for while working in J2ME (WTK 2.2)? "builtin.ks" file/folder could not be found" How to resolve this problem? ...

netbeans topcomponent context

Hello, I am trying to add a top component of my own in Netbeans 6.1. I want to do it correctly so I will get the context sensitivity features of the topcomponent. 1. what do i need to do to add the topcomponent correctly? 2. how do I control and configure the actions of the topcomponent (toolbar/shortcuts/enable/disable...) thanks Amit ...

Netbeans and Glassfish performance

I was wondering if anyone had any performance options that might work for me. I am using Netbeans 6.1 and Glassfish V2 on my work laptop and the memory requirements are getting a little tiresome. I have 3 gb of ram and I frequently have to kill everything and restart it due to PermGen Space errors. I've played with the mem sizes as well...

NetBeans importing libraries on its own

I am having a problem with NetBeans projects. It affects everyone on my team, for every project. Whenever a project is opened, or even sometimes seemingly at random, NetBeans (6.1) will add two libraries to the compile-time list. Normally this would go unnoticed, but the inclusion of these libraries causes JBoss to unceremoniously grenad...

In Netbeans, how do I type a non-existent method and have the method get generated automatically?

In other IDEs, I can type a method as if it existed, hit a key combination and the method is generated. For example, I type: public List<String> getIds() { int max = 4; return generateRandomArray(max); } As of now, the method generateRandomArray doesn't exist. I then hit a key combination and it generates: private List<Stri...

JInternalFrame Demo

how to make an internal frame show infront of the jframe ...

Java/Swing GUI programming with NetBeans 6.X framework.

I am using NetBeans 6.1. When I am trying to create a "Java Desktop Application"-project, a skeleton application is created with lots of WTF code. How can I understand those code? Can anyone suggest me any web-link? In this SO question, some links are provided. But they are not answering to my problem. Suppose, what is a SingleFrame...

Java/Swing+NetBeans 6.1. Keyboard event is not working.

I need to move a Label-control on the form. I have created a "Java Desktop Application" in NetBeans 6.1. I have added the following code: But the label is not moving. Why? /* * DesktopApplication1View.java */ package desktopapplication1; import org.jdesktop.application.Action; import org.jdesktop.application.ResourceMap; import ...