Questions tagged [netbeans-8.2]

88 questions
1
vote
2 answers

Cannot Create Maven Web Project in Netbeans 8.2

I installed netbeans 8.2 recently and I keep trying to create a maven web project but I'm getting this error. Cannot run program "cmd" (in directory "C:\Users\Administrator\Documents\NetBeansProjects"): Malformed argument has embedded quote:…
Dil.
  • 1,996
  • 7
  • 41
  • 68
1
vote
0 answers

How to stop background scanning of projects

Netbeans is showing the process 'background scanning of projects..' continuously after installing python plugins.There is also 'checking for external changes' which is suspended. How can I stop the process?
ZH Rifat
  • 69
  • 6
1
vote
1 answer

Netbeans IDE scaling too small

The Netbeans IDE menu icons(new project, open project, etc) are all extremely small. Any pop-up menus that open while I am working start with very small dimensions, forcing me to expand them so I can see what I am doing. How do I increase these…
BRS2000
  • 13
  • 2
1
vote
1 answer

NetBeans (maven) project: checkstyle-beans vs maven-checkstyle-plugin

There are at least two ways of using the checkstyle in the NetBean maven project (at the time of 2019-07-24): using the NetBeans's plugin checkstyle-beans v4.1.0, last Update: 2016-02-09, uses Checkstyle v6.15. The last declared supported…
yalov
  • 576
  • 5
  • 15
1
vote
0 answers

can not running javafx project on netbeans8-2

i can not run a simple javaFx project on netbeans8-2 i am using ubuntu 18.04 LTS and openjdk but openjfx can not install on my system (in fact it will install but files that are here [ https://packages.ubuntu.com/bionic/amd64/openjfx/filelist ] will…
shiva
  • 11
  • 2
1
vote
0 answers

How can I compare two integer columns in two different jtables, and then print greater or lesser in another jtable by clicking button?

I am still developing stock management system with netbeans ide using java. In one interface I have three different jtables, one for current materials quantity in stock, one for required materials quantity for fulfill order, and other one for print…
1
vote
2 answers

Projects wont run on Netbeans 8.2

I made a simple project on NetBeans 8.2 and for some reason, It won run my project. The symbol for the run button is unclickable. I've clicked the run on the menu bar but it's still not working for me. public class FirstFile { public static…
Caysson
  • 21
  • 2
1
vote
2 answers

How to make progress bar for web pages loading process in JavaFX?

I am working on a JavaFX application which uses WebView. I'd like to make a ProgressBar which shows the user the progress of loading a page. I know how to create a ProgressBar, and how to work with it, but I can't figure out how to get the progress…
user8188748
1
vote
0 answers

Demonstrating usage of cache, with ArrayList, 2 dimensional array and basic loops

So, it's one of our labs at Computers Systems Architecture, in which we are required to illustrate the process of cache(ArrayList of string) working with main memory(2 dimensional array of int) each [i][j] of that contains 4 int elements(cyan,…
1
vote
1 answer

Error creating Grails project in NetBeans

The error I have is the following: Warning | Unrecognized flag: non-interactive. Resolving dependencies.. Error | Specify an application name or use --inplace to create an application in the current directory I'm following the steps that come on…
FrEqDe
  • 181
  • 2
  • 3
  • 10
1
vote
3 answers

How to use Spring 5.0 in NetBeans 8.2?

When I create a Java Web project in NetBeans and select a Framework, in this case Spring Web MVC, only two options appear: Version 4.0.1 Version 3.2.7
FrEqDe
  • 181
  • 2
  • 3
  • 10
1
vote
1 answer

How to use Aspose.Cells in existing project in netBeans?

I want to convert excel sheet data to image and currently I was working with graphics 2D of awt but it is not giving me desired result. I have read that aspose.cells can be used for converting to image but when I try to implement it gives me error…
1
vote
3 answers

JDK was not found on the computer for netbeans 8.2

I got the following message when opening NetBeans that JDK has not been found on this computer. I have got the JDK installed, and set the bin directory in the environment. Btw, I am using Windows 10 Pro 64 bit. I have tried this in the command…
florian de wulf
  • 114
  • 1
  • 2
  • 9
1
vote
1 answer

use COUNT(*) to count multiple rows from multiple tables in netbean

So I want to count the total number of sales for each seller from two different tables. And I wrote down the code but it does not work..... Can anyone please help me??? So it should produce that sellerID =1 and count = 13. sellerID=2 and count= 14.…
김규현
  • 11
  • 2
1
vote
1 answer

ProjectClassPathModifier and ProjectClassPathExtender

I am trying to contribute a fix to a Netbeans 8 plugin which is currently broken. The plugin includes an "add support" menu item which is supposed to, amongst other things, add an entry to the project class path if the project is an ANT project.…