With NetBeans (v. 6.9.1) I cannot get syntax highlighting for the Boost library, i.e. all stuff present in Boost is not recognised. However the project is built correctly.
I already set the paths in: NetBeans > Preferences > C/C++ > Code Assistance > C++ Compiler.
Here I added the /usr/local/include path.
The Boost headers are in /usr/...
I'm using NetBeans 6.9 with the Zen Coding plugin.
I was wondering if there is a way to get the selector support working in NetBeans.
Currently typing this:
ul#my-list>li*3>a
Does not produce this:
<ul id="my-list">
<li><a href=""></a></li>
<li><a href=""></a></li>
<li><a href=""></a></li>
</ul>
...
Hello,
I have created a new DesktopApplication in Netbeans. When I start it, it shows the gui directly on the screen. How to hide it after startup?
Something like this:
DesktopApplication1.getApplication().getMainFrame().setVisible(false);
after the initComponents(); method doesn't work.
Is there a way to hide this window after start...
Hi all, i have a custom bean and a custom eventListener, i need to show my event Listener in the events tab of my bean.
I think the solution is to add my event Listener to a beaninfo(i create it with netbeans, so it is auto-generated).
There is a "wizard-way" to do this, or i have to hand-write my beaninfo?
Thanks.
...
A program of mine (written in Scala 2.8) works fine when launched by means of NetBeans IDE. But when I try to run it from outside, with "java- jar", it says "Exception in thread "main" java.lang.NoClassDefFoundError: scala/ScalaObject...". Putting all the libraries, incl. Scala runtime inside the same dir as the jar to be run doesn't hel...
I am taking an Adv Java class this semester and we are using NetBeans as the IDE. Last semester I used Eclipse and found a good book on that IDE. Can anyone recommend a good book for NetBeans?
I am looking at the following:
NetBeans Platform 6.9 Developer's Guide
Any ideas are appreciated.
-Rhonda Tipton
...
Hi everyone. I'm banging my head against the wall trying to figure this out.
I'm using NetBeans 6.9.1 and I have a project of type "Java Application." This project contains no Main method, but instead a Japplet named AlarmClock.java. When I right-click and run AlarmClock.java, it runs correctly with no problems. What I can't figure out ...
I'm trying to develop on android's platform. I'm working with netbeans and using this tutorial: Introducing Android Development with NetBeans. I seem to have everything installed properly, and have no trouble creating android projects, but when I try to debug I get several error messages like,
W/ResourceType( 3449): Bad string block: st...
I will be hosting a java project on SVN which will need to be downloaded by other developers with the ability of that project to be compiled / packaged on their local machine.
I would like to know what files are needing to be stored on SVN and which ones can be left out. I know the files that Netbeans creates can be left out and the bu...
I am using Entity bean in NetBeans, to develop some master/detail forms. When I run the forms, I click the Delete JButton, and the row dissapears from the JTable.
But when I click on "Reload", the supposedly deleted row shows up again. I don't know why is this happening; why does the Entity doesn't erase all the way to the database ta...
Hey guys,
Question:
I would like to know how easy it is to customize netbeans using beanshell?
Can you fully access the whole API? Is their a better way to deal with private/protected classes/fields you'd like to modify without introspection? How easy it is to overwrite things?
Context:
I'd like to customize my netbeans. Writing modu...
I have a legacy Rails project (2.4) that used to work in Netbeans. But I just tried running it and got the message
"could not connect to the web server http://localhost:3000"
How do I get a more detailed explanation from Netbeans?
I don't see any other error information.
...
Hi,
I have an existing java project in Netbeans. I would like to start coding parts of it in Scala. I can add ".scala" files to the project but apparently they aren't compiled.
Can I somehow modify the existing Netbeans project settings in order to build java and scala sources together or do I need to create a new project and import th...
I'm using netbeans and maven in my project and for JSF configuration files it generates some .NavData files.
This bothers me during backing up my project and also is inconvenient for versioning systems.
How can i configure to use another folder for these files, e.g. target would be awesome.
Any ideas?
Thx.
...
Hi guys,
I would know if is possible compile a java desktop application in 32bit application
from Windows 7 64bit using Netbeans.
Thx you for HELP.
...
I have some code for a calculus calculator from the internet, and I tried to run it in Netbeans 6.9, but it doesn't run saying that JUNG or Java Universal Network/Graph Framework is missing. Can someone tell me how to download JUNG or anything missing in my software?
...
Hello!
How do you add a folder (e.g. a resource folder containing arts) to the classpath of a netbeans project? I managed to do that manually via editing the NB generated jar file of the project (that is its MANIFEST.MF file + copying the resources manually), but there should be a way to tell netbeans as well to mind the resources, no?
...
I love short if statements without braces (PHP) like
if ($x === $y)
echo $z;
If I want to add a few lines (maybe just temporary for debugging) I have to manually add the braces. Is there a plugin for netbeans that does that via shortcut, something like "toggle (add/remove) previous statement braces"?
...
Howdy, after translate to c# (from java) and using visual studio, I found that visual studio dosent have the netbeans feature that highlight the buggy code files in files browser and lines that contains errors in the left side of the code. I think this feature very useful and let me find some error before press compile/run. so I want to ...
hi.
im developing an android app with netbeans.
and i'm trying to play sound with
MediaPlayer mp;
mp = MediaPlayer.create(this, R.raw.a);
mp.start();
there is a file named "a.mp3" in the res/raw directory.
but for some reason i'm getting file not found on line 2.
What could be the problem ?
thanks
...