how to add a background image with transparency to a jFrame in Netbeans. I have added a jPanel to jFrame and all components are in this panel.
Also Netbeans allows me to preview various designs for the jFrame. How to apply these designs?
I can't find the option to save it.
...
Is there a way to automatically run the update command after issuing the Team -> Share -> Pull from default command from the menu? TortoiseHg has a configure repository option for the Synchronize command, but I believe this will only apply when using the Hg Explorer Integration.
...
What is the recommended naming convention for properties added to the Bundle.properties file in NetBeans? Should properties added by developers be prefixed with tags similar to those of NetBeans. I've noted several in use (e.g., CTL_, HINT_, MSG_, TXT_), but no guidance on where each should be used or if they should be used only by the N...
Every time I try to debug my Rails app via Netbeans I get a ...
"Could not connect to web server - cannot show http://localhost:3000"
Rails - 2.3.5
Ruby - 1.8.7-p249
Anyone know how to resolve this?
Thanks
...
Dear Engineers, I'm a newbie in RegEx
I have thousands html tags, have wrote like this:
<input type="text" name="CustomerName" />
<input type="text" name="SalesOrder"/>
I need to match every name attribute values and convert them all to be like this:
CustomerName -> cust[customer_name]
SalesOrder -> cust[sales_order]
So the results...
I have recently learned about BeanInfo classes in Java, and have successfully used them to add icons to my custom GUI components which extend swing components such as JTextField, however i have a more specialized GUI component which extends from another one of my GUI components, which then extends from JTextField. Ie. the class hierarch...
Hello, I've got a strange exception with my EJB3.1 application, a ZipException is thrown during the application deployment:
[#|2010-05-15T16:01:44.688+0100|SEVERE|glassfish3.0.1|javax.enterprise.system.container.web.org.glassfish.web.loader|_ThreadID=22;_ThreadName=Thread-1;|WEB9051: Error trying to scan the classes at /Users/kevin/Docu...
Hi,
I would like to know which IDE is better for Java EE 6 development. Can anyone give me the comparison of these 2 IDE in terms of features?
Thanks.
...
I am about to embark on learning Python (largely for the purposes of using it as scripting glue between my applications).
I use Netbeans (6.8) on Linux for both my C++ and PHP development work. Ideally, I would like to use the same IDE for Python - and there is a Python plugin for Netbeans (admittedly, its still in Beta).
Does anyone h...
I'm using Netbeans to add a JToolbar to my window which also has a JMenuBar. Here is the design-time look:
.. but during run-time I get this:
With the toolbar seemingly partially hidden under the menu names. This is on the Mac, btw. Is there something stupid I've forgotten to do or some layout trick I should be using?
EDIT: I'll ad...
Hi,
I have been trying to figure this out for a few hours off and on now and can't figure it out. I committed a lot of binary (jar files) to cvs and they worked fine, but one of the 6 directories, netbeans thinks has a file that it keeps trying to commit, but it doesn't actually exist in the file system. There is also another file in ...
I'm trying to invoke a SOAP webservice which first checks inputs and then authenticates the message as i understand it.
Basically what i've got here is
a FAKE client and an EJB webservice that forwards the message to the real webservice.
I've read that there are some cross compatibility issues with Metro and the .NET stuff but I've ...
I have this part of code
<?php for ($j=0; $j < $count; $j++): ?>
<?php if(isset($votes[$j])): ?>
<dt>something something</dt>
<dd>
<span><?php echo $result; ?>%</span>
<div class="bar">
</div>
</dd>
<?php else: ?>
<dt>info</dt>
<dd>
...
I have the following problem. I have a Java project in my NetBeans IDE 6.8. When I compile it and it produces a .jar file containing everything possible, the META-INF is not right. It doesn't contain the class to be executed - with main() method.
When I click the Run button inside the IDE, everything works. The settings of the project ...
I recently downloaded and installed feedparser with python,
I tried to run it but Netbeans shouts on import:
ImportError: No module named feedparser
restarted the Netbeans, still no go.
...
WEBSERVICE 1 (banking.java)
package bank;
import client.TestserviceService;
import javax.jws.WebMethod;
import javax.jws.WebService;
import javax.xml.ws.WebServiceRef;
@WebService()
public class banking {
@WebServiceRef(wsdlLocation = "WEB-INF/wsdl/localhost_23164/testwebservice/testserviceService.wsdl")
private TestserviceSer...
i've got a variable $user that is of data type User (a class).
i've got it in a class method so i can't just type:
/**
* @var User
*/
$user = Factory::getInstance('User');
because that will work only with class properties, not method variables like in this case.
how could i tell netbeans that that variable is of data type User in ...
Hi guys - I'm using Netbeans IDE for developing the web applications and I've some JARs available in the application server which doesn't need to be with WAR but we needed them to compile and run locally. Is there an option in Netbeans to exclude the JAR file while building the WAR file?
Thanks
Santhosh
...
Well I know basic Java and wanted to learn Swing so of course looked at the Sun website first, where this tutorial is. I was going to start it but realised it relied heavily on NetBeans, which I'm not sure about.
I'm not sure because it's learning that I want to acheive, not a nice looking program.
So I thought using NetBeans like this...
All,
I'm trying to make the properties of my node have Units associated with the measure. ( I am using the JScience.org implementation of JSR 275) So for instance,
public class Robot extends AbstractNode {
// in kg
float vehicleMass;
@Override
public Sheet createSheet() {
Sheet s = Sheet.createDefault();
...