netbeans

Changing the width of a knob on a JSlider

Ok, so I have searched google for a while now to see if I can find the answer to this but no dice. Maybe I am just searching for the wrong thing but this is what I want to know: How do you change the width of the actual Knob on the JSlider component? NOT how to change the width of the JSlider. Any help would be greatly appreciated! ...

C++ console output in Netbeans

When I run a C++ program in Netbeans on a Mac that has cout or printf statements the output is displayed in a terminal opened using X11. Is there a console built into Netbeans? If yes, how do I change the output to it? Thanks, Spencer ...

Displaying full path of filename in tabs ~ Netbeans 6.8

I can't seem to find a way in the options to display the full path of the file at the title of the tab. I can hover over it to see it, but it would be nice to see it at a glance. There is a SU question about it also, http://superuser.com/questions/88637/netbeans-how-to-view-file-full-path-in-window-title-or-somewhere-else Does anyone h...

portable desktop application in java using sqlite

I want to make portable desktop application in java using netbeans 6.8 and sqlite 3.6.23.1. So how to connect sqlite to netbeans and how to make it portable ...

How to make NetBeans IDE 6.8 show svn commit status (especially for "dirty" files)

I just switched from Eclipse to NetBeans IDE 6.8 for my PHP/Ajax development. Eclipse always showed a little hard disk symbol over the file icon for files that were in sync with the svn repository, and an asterisk for files with changes that have not been committed. Is there a way to see the commit status in NetBeans? If not, what is ...

xmlEncoder not writing in netBeans

Hi, I am trying to use the xmlEncoder to write to xml file in net-beans but it doesnt work. Here is the call to the writing function: dbManipulator.writeStudents(deps); where deps = new Hashtable<String, Department>(); dbManipulator = new DataBaseManipulator(); Department is an class-object I made, and here is writeStudents metho...

how to create embedded browser in Netbeans ?

The user needs to browse sites through the Java program (not netbeans IDE), it should behave exactly like FireFox browser or IE, any suggestions ? I need to be able to access the DOM so I can manipulate DOM elements. Also, is there something equivalent to Perl's CPAN but for Java ? ...

Setting up Ruby on Rails beginner netbeans

WOW. Setting up is complicated, can anyone recommend a link or provide me with some advice. I have two options, a Linux Hosting server with it pre-installed or through NetBeans. Sorry for the generic question. ...

NetBeans, XDebug and CodeIgniter - how?

Does anybody have any (actually working) solution for this? My config is: $config['uri_protocol'] = "PATH_INFO"; $config['permitted_uri_chars'] = ''; $config['enable_query_strings'] = TRUE; ...

NetBeans auto-expand folders in Projects or Files window on startup?

When I close NetBeans IDE 6.8 with specific folders expanded in the Projects or Files window, and then open NetBeans the next time, all of the folders are collapsed, which means I have to manually go through and expand the folders I want open again. I have to suspect I'm overlooking something obvious here, but I can't find a way to make...

How do I configure NetBeans to only step through Java code that I've written.

Am I missing something? I'm delighted that all that code is there showing how the generic collections work etc. However when I want to simply walk my code I'm forever finding myself going deeper into Java's own library code than I care to. Is it possible to simply disable that when stepping code - I want to treat all of that stuff as a...

How to add libraries from an enviornment variable in Netbeans 6

If I have an environment variable named JAR_FILES with a semicolon separated list of jar files, is there a way to have Netbeans to automatically add all of these jar files to my project libraries so that I do not have to manually add each one? I ask because there are many and they are not in the same directory. The only thing I can thin...

Link Maven OSGi to Maven NetBeans Platform Project

I am using NetBeans 6.9 Beta and I would like to accomplish the following: Set up a project representing the main application using Maven (for instance "Maven Project", "Maven NetBeans Application") Ideally, the project should only contain the necessary libraries to run in Apache Felix (I would like to be able to right-click the projec...

Is there a way to let NetBeans work with Amazon-ec2 disk space?

Hello, I'm sick of using vim to develop on some far Amazon-ec2 machine. I'm wondering if there is any way to Use NetBeans on my laptop to develop on and run the code on that machine. Basically I want a way to let NetBeans operate on an external disk space that I connect to using SSH, In my case I'm using Mac OS X 10.6.3 locally and the...

What is the state of support by Netbeans for Bazaar?

Wikipedia Comparison of revision control software User interfaces table shows Bazaar as not having Netbeans support. Is there development underway to provide this feature for Bazaar? ...

What PHP Netbeans IDE configuration results in more productive development?

For example I use Netbeans for PHP and have started to integrate PHPUnit & XDebug as part of my normal setup. What other plugins/modifications to Netbeans default setup can be more productive and useful. Thank You ...

MySQL Connector Linker Problem

Hey, I'm trying to compile a program with the MySQL C++ Connector but somehow I can't get the linking right. The errors I get are: mysql/lib/libmysqlcppconn.so: undefined reference to `std::ios_base::ios_base()@GLIBCPP_3.2'.... etc locations: libmysqlcppconn.so: mysql/lib/ libmysqlclient.so: /usr/lib/ I tried to follow...

Why doesn't the compiler complain about this error?

I am writing some Java questions to help my friends in the Java exam. I wrote a question and I assumed that three errors would occur in the code but the compiler only complained about two. The code is: class MyClass { static MyClass() { System.out.println("I am The First Statement here!"); this(); } } ...

NetBeans ("6.8" and "later") - UML support?

Hello, I wanted to download the "UML plugin" to NetBeans through the "Tools/Plugins" but I didn't find the plugin there. Then I read in many articles that the "NetBeans UML plugin is not supported anymore" :-( . Then I discovered that there exists some "NetBeans SDE" tool that supports the UML in NetBeans and there exists the "Comunity...

NetBeans create and instantiate programatically custom swing widgets

Hey! I have a problem I know how I would solve easily developing under eclipse - but not so easily developing under net beans. I want to create a custom swing widget - which I can instantiate by code as many as I need and attach them to my main panel. I have developed the rest of the GUI using the GUIBuilder. The problem is - im ...