Re: Simple Modules Question.

2021-11-18 Thread A Z
From: Pieter van den Hombergh Sent: Thursday, 18 November 2021 8:36 PM To: A Z Cc: users@netbeans.apache.org Subject: Re: Simple Modules Question. Dear AZ, You do not state whether this is a maven or an ant project. Assuming it is a maven project (which is advisable), than your files should be

Simple Modules Question.

2021-11-17 Thread A Z
I have a tiny little Java OpenJDK 17 Module file, module-info.java, module JavaApplication { requires java.base; } and Netbeans 12.5 is giving me the following errors: C:\Users\User\Documents\NetBeansProjects\JavaApplication1\src\Java1\Start.java:1: error: file should be on source path, or on p

Re: Netbeans 12.5 and OpenJDK 17, still with floating point errors?

2021-11-17 Thread A Z
November 2021 8:31 PM To: Pieter van den Hombergh ; A Z Cc: users@netbeans.apache.org Subject: RE: Netbeans 12.5 and OpenJDK 17, still with floating point errors? Love your answer Pieter – I can almost hear the words of my late father (who was a scientist and a computer geek) “… if you wa

Netbeans 12.5 and OpenJDK 17, still with floating point errors?

2021-11-17 Thread A Z
If I try to compile the following, I get a warning that strictfp won't be needed: package Java1; import static java.lang.System.*; public strictfp class Start { public static void main(String[] args) { out.println("Greetings"); out.println(); out.println(0.1f*0.1f);

Netbeans Stable Support for OpenJDK 17?

2021-11-16 Thread A Z
To Who it may Concern, I am aware of the fact that Netbeans 12.5 only offers experimental support for OpenJDK 17 at this time. I am going to need to use OpenJDK 17, because of its accurate floating point mathematics. How far away is full support of Netbeans 17? So that I can install Netbeans, a

Netbeans Project starting errors around OpenJDK 12?

2019-05-19 Thread A Z
I am getting a Netbeans 11 and OpenJDK 12 error. Netbeans now loads. However, I am getting the following error when trying to build my project. How can I fix this? If it is needed, can you please reply to me with the appropriate link to a Maven Repository which is the best one to use? cd C:\Us

Re: Netbeans 11 and Java OpenJDK 12?

2019-05-18 Thread A Z
e fix, or could one please be coming? From: Geertjan Wielenga Sent: Saturday, 18 May 2019 5:00 PM To: A Z Cc: users@netbeans.apache.org Subject: Re: Netbeans 11 and Java OpenJDK 12? What’s the error message you get when run on JDK 12? (Abd which operating system

Netbeans 11 and Java OpenJDK 12?

2019-05-17 Thread A Z
To the Netbeans group, it seems that presently, Netbeans doesn't detect or run itself on OpenJDK 12. I don't know how well it will work using OpenJDK 12 as a runtime. Does or will it yet be that Netbeans 11 will run itself On OpenJDK 12, as well as use it as a compiler and runtime for Java proje

Questions about 64 bit Netbeans 10

2019-03-05 Thread A Z
To whom it may concern, Can someone please address my two questions and email me back at powerus...@live.com.au ? -Does the CodeName One plugin use its own internal JVM, or can it virtualise a smartphone environment while using a separately applied JVM, from t

Question about Java Code Help

2018-09-20 Thread A Z
'There never was a Java Code help forum with the Netbeans project'. -Ah, yes, there was. There used to be a sub forum for it, until the Apache Netbeans project auspice began, at which point it and the old web page and help forum area ended, and was just torn down and deleted. -Is there an Apache

Question about Java Code Help.

2018-09-20 Thread A Z
To who it concerns, Previously there was a Netbeans Java code help forum. I have learned recently that users@netbeans.apache.org is not the place for such questions. Does Apache Netbeans have a place for code questions about Java programming any more? Or in fact not, and are people simply advise

Determining execution environment properties.

2018-09-19 Thread A Z
I am using the following to try and determine some more execution context: ProcessBuilder builder = new ProcessBuilder(); Map map = builder.environment(); String context = map.get("PROMPT"); if(context instanceof String) //... The only thing that I have been able to d

***UNCHECKED*** Netbeans and OS console capturing issue.

2018-09-18 Thread A Z
If I use: ProcessBuilder builder = new ProcessBuilder("java", "-Xmx8192m", "-cp", "dist/MemoryLauncher.jar", "Project.Main"); the Netbeans console will detect both Main methods, but the default Windows console won't. If I use: ProcessBuilder builder = new ProcessBuilder("java", "-Xmx8192m",

Netbeans and default console issue.

2018-09-18 Thread A Z
If I use: ProcessBuilder builder = new ProcessBuilder("java", "-Xmx8192m", "-cp", "dist/MemoryLauncher.jar", "Project.Main"); the Netbeans console will detect both Main methods, but the default Windows console won't. If I use: ProcessBuilder builder = new ProcessBuilder("java", "-Xmx8192m", "

Netbeans 9 Console Capturing Problem.

2018-09-18 Thread A Z
//I am encountering my Netbeans 9 console capture problem via the following: package Project; import java.util.LinkedList; import static java.lang.System.out; public class Main { public static void main(String ... args) { out.println(); out.println("Primary Main program has begun."); o

Obtains Netbeans 9 console to both processes.

2018-09-18 Thread A Z
I am running Windows 10 64 bit and 64 bit Netbeans 9. I order to have the Netbeans console listen to both processes, I was suggested from this emailing list: What you need to do is have the output of the spawned

Netbeans Console issue with separate Java programs.

2018-09-17 Thread A Z
I am running Netbeans 9 64 bit on 64 bit Windows 10 Home Edition. I am calling an additional full java program from with the source code of an initial one, in order to increase the 64 bit memory limit: Process process = Runtime.getRuntime().exec("java -Xmx8192m -cp MemoryLauncher.jar Project.Mai

Netbeans 9 CodeNameOne Plugin Oriented Questions.

2018-08-04 Thread A Z
-Will Netbeans 9 CodeNameOne projects be updated and compatible with Java 11, and/or versions of Java higher than 8? -I can't get the Netbeans 9 CodeNameOne support to generate a native android installation file, .apk. What do I need to do to acheive this? Is it possible to acheive offline .apk

Re: Problems with Java versions, and running a CodeName project.

2018-08-04 Thread A Z
: A Z; us...@netbeans.incubator.apache.org Subject: Re: Problems with Java versions, and running a CodeName project. Can you write to the Codename One mailing list with your questions, please? Gj On Saturday, August 4, 2018, A Z mailto:powerus...@live.com.au>> wrote: I am running Netbean

Problems with Java versions, and running a CodeName project.

2018-08-03 Thread A Z
I am running Netbeans 9 on Java 8 64 bit. I am running a Windows 10 64 bit Home Edition pc. -Is there an easier way to alter the version of Java Netbeans 9 uses to build and run projects without altering C:\Program Files\Netbeans\etc\netbeans.conf every single time? -I am having problems with

Question about building a CodeName project.

2018-08-03 Thread A Z
-What is the solution for the build bug that Netbeans 9 leaves me with when attempting to build a new CodeName project? C:\Users\User\Desktop\Codename_One\build.xml:17: taskdef A class needed by class com.codename1.build.client.GenerateGuiSources cannot be found: javax/xml/bind/JAXBException usi

Netbeans 9 Questions?

2018-08-02 Thread A Z
I am running Java 9 and Netbeans 9 64 bit on a Windows 64 bit Home Edition PC. In Netbeans 9, -How do I register TomEE with Netbeans? Where is the mentioned plugin that I need to install inside Netbeans? -How do I have a project that links to Java Micro Edition? If the solution is with a CodeNa

Still possess a Build Error.

2018-03-29 Thread A Z
I have made the changes to the path of all the utililites so that they are directly under c:\ I am still getting the response that cd 'C:\Users\User\Desktop\CppApplication_1' C:\GNU_Make\make.exe -f Makefile CONF=Debug clean "/C/GNU_Make/make.exe" -f nbproject/Makefile-Debug.mk QMAKE= SUBPROJECTS

Help with C++ on Netbeans 8.2

2018-03-29 Thread A Z
I am have trouble building a starter project of C++ on Netbeans 8.2 I have set up the C++ module for Netbeans, but am getting this error. Can someone please reply to me with the necessary solution for overcoming this error, so that I can build with success, please? cd 'C:\Users\User\Desktop\CppA

C++ in Netbeans on Windows requires qmake.

2018-03-27 Thread A Z
I am running Netbeans 8.2. I am also a 64 bit Windows 10 user. I have learned that I cannot build my C++ projects without qmake working. However, I have learned that the only way to obtain this from Qt seems to be via a huge 2Gb download (or even larger). It also seems that the open source Qt do

C++ in Netbeans on Windows requires qmake.

2018-03-26 Thread A Z
I am a 64 bit Windows 10 user. I have learned that I cannot build my c++ projects without qmake working. However, I have learned that the only way to obtain this from Qt seems to be via a huge 2Gb download (or even larger). Can someone please reply back to me with a compatible, much smaller, ver

Questions about Netbeans 8.2

2018-03-22 Thread A Z
-I am running NEtbeans 8.2 on 64 bit Windows 10 Home Edition. -I have also installed 64 bit Java 8. I have been trying to get C++ working under netbeans. I have installed cmake, qmake, and the TDM 64 bit G++ compiler kit. However, having installed 64 bit MSys2, I am getting the message when I bu