netbeans6.5

Can I make a GUI using NetBeans but implement functionality using C?

I want to use NetBeans to build the GUI for my project, but implement the functionality using C code. Is there any way I can make the C code run when a button in the GUI is clicked? ...

Did you know how to setup MYSQL connection? in netbean 6.5

http://i61.photobucket.com/albums/h79/hc_reborn/Pic1.jpg http://i61.photobucket.com/albums/h79/hc_reborn/Pic2.jpg http://i61.photobucket.com/albums/h79/hc_reborn/Pic3.jpg http://i61.photobucket.com/albums/h79/hc_reborn/Pic4.jpg Did you know how to setting this? ...

Making this code for image resize() work

My instructor sent me this code, which is supposed to be an integral part of an ongoing project. Thing is, it doesn't work. import java.io.File; import java.io.FileOutputStream; import java.io.IOException; import java.awt.*; import java.awt.image.BufferedImage; import java.awt.image.Kernel; import java.awt.image.ConvolveOp; import com.s...

How to sync netbeans config/plugin/updates across multiple systems?

I use netbeans in both my desktop and my laptop. Updating and installing plugins on both systems is cumbersome, hence, it would be nice if there was a way to sync configurations, plugins, and updates across the systems. I tried copying the ~/.netbeans directory, however, that also brings along the list of recent files and open projects ...

Netbeans incompatible types question

Hi there, I am getting the following warning in Netbeans: incompatible types found : carPackage.port.search required : carPackage.SearchResponse In my JSP page, I have the following code: CarService service = new CarService(); CarPort port = service.getCarPort(); SearchResponse searchResult = port.search("Toyota"); The error obviou...

PHP Netbeans - New Project from Existing Sources asking for an Index file?

I'm trying to create a new project in NetBeans PHP from existing sources. When I try to create a new project, it asks me for the location of an Index File. What is an Index File in the context of NetBeans? ...

Individual column widths of Jtable in netbeans

Hi.. I'm new to using JAVA.. How do i set individual column widths of a JTable in netbeans? ...

How to change settings in Netbeans 6.5 to run web application in not default browser?

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. ...

Error when moving NetBeans project from Windows to Mac OS X

I have a netbeans project that works fine on my windows machine but when I copied it to mac and try to deploy I get the error: /Users/stella/project/nbproject/build-impl.xml:348: The libs.CopyLibs.classpath property is not set up. This property must point to org-netbeans-modules-java-j2seproject-copylibstask.jar file which is part of N...

NetBeans IDE 6.5 and Microsoft Access

hi everyone! I would like to know if there is anyone who has used NetBeansIDE 6.5 before, also connected a MS Access 2007 database to a system developed with java Application option in the NetBeans platform. i would appreciate help very much especially if it's a tutorial send to me([email protected]) ...

ID numbers generation

i am trying to code for my system in NetBeans IDE 6.5 to auto generate ID numbers for me like autonumbers in Ms Access. does any one have any ideas about going about that?i mean code for it. ...

can i create a login screen which will check for passwords and usernames from a table in a database

does anyone have a code for login screen that can register a new user and also login users that exist in a table in a database? i would appreciate very much any form of help ...

can one implement a image background in his forms

is there a way that one could implemenr an image background in hos application(from) ...

which is the best way of linking two forms by use of a Jbutton

am having a JFrameform as my main page with several JButtons, i want if i click a button, another JFrame form appears and also find a way to navigate back to my main page from the opened Jframe form. which is the best way to go about it? My project is in Java>java Application ...

NetBeans gui design tool (matisse) seems to use Java 5 instead of Java 6

When trying to open a custom JPanel class in the NetBeans GUI design tool, I get the following error: Warning - Form loaded with errors Error in loading component property: [JPanel]->someScrollPane->somePlainJTable->autoCreateRowSorter No such property exists in the component. The offending code: somePlainJTable.setAutoCreateRowSorte...

Running Tomcat from NetBeans

Hi, I have installed Apache Tomcat and then I installed NetBeans. Then I added the Tomcat instance to NetBeans servers. Whe I try to run the server from NetBeans, something goes wrong.. Server starts and is running, but NetBeans does not know that and waits for the server to start forever (until a unsuccesfull message is displayed). I ...

What Happened to BufferedImage class in Java ME 6?

Hello good people! from my small knowlegde from java se i want to try a tutorial on Java ME. I have Netbeans 6.5.1(with mobility package) and have Java 6 update 13 installed on my windows xp sp2.I've arrived on a stage of the tutorials where they are using BufferedImage that seems not to be found either on java.io, java.nio.Buffer, javax...

Netbeans 6.5 prevents adding breakpoints to Java files. Configuration issue ?

I'm not able to add breakpoints to any Java file. It seems this problem has been reported in slightly varying contexts in the netbeans issuezilla. I could not find any concrete workarounds other than updgrade to NB6.7M2, which is currently not feasible. Other things I've tried are a JDK updgrade, spicy bat wings and a bottle of silverm...

jsp array list problem

hi i am trying to create an array that doesnt add items if the value/size is more than 20. this solution adds only 1 item and then stops even if the value is less than 20. how do i change it so that it accepts values only upto 20 max. package business; import java.io.Serializable; import java.util.ArrayList; public class Cart implemen...

How should I debug Trac plugins?

I'm about to start a fair amount of work extending Trac to fit our business requirements. So far I've used pythonWin and now Netbeans 6.5 as the development environments - neither of these seem to provide any way of debugging the plugin I am working on. I'm totally new to Python so probably have not set up the development environment h...