Re: NB & Eclipse about jar files

2022-03-05 Thread Chuck Davis
It's hard to know what you are wanting to do with little to no information. In all probability the jar files produced via Eclipse are osgi bundles (extra metadata in the manifest). So you will have to run them on either Felix or Equinox (or another osgi implementation) in a NB environment. It wo

Re: Matisse GUI builder bindings

2022-02-04 Thread Chuck Davis
You might want to begin the migration to JavaFX. It has a very good binding capability. There's a learning curve but well worth the effort. Build your dialogs with Scene Builder and load them into your Java program with FXMLLoader. Distribution takes a little more effort but, again, well worth t

Re: Question about Netbeans platform application with JavaFX

2022-01-11 Thread Chuck Davis
Check out Module javafx.swing in the JavaFX documentation. It's how I got started on JavaFX. On Tue, Jan 11, 2022 at 5:59 PM 王东华 wrote: > Dear, > > I am investigating how to develop with Netbeans 12.6. I create a Netbeans > platform application and I want to use JavaFX 17 in the application, our

Re: NB12.4 quit

2021-08-24 Thread Chuck Davis
Yes, I ordered new ram. Thanks. On Mon, Aug 23, 2021 at 11:03 PM Emilian Bold wrote: > Try a memtest. Most likely it's bad RAM and that can easily be replaced. > > --emi > > On Mon, Aug 23, 2021 at 9:10 PM Chuck Davis wrote: > > > > I'm beginning to susp

Re: NB12.4 quit

2021-08-23 Thread Chuck Davis
I'm beginning to suspect hardware. I put everything on my laptop (same OS, same NB, same JVM) and it's working flawlessly. May have to build myself a new desktop. Bummer.. But thanks for your response Emilian. On Sun, Aug 22, 2021 at 11:36 PM Emilian Bold wrote: > You could try jstack to

Re: NB12.4 quit

2021-08-22 Thread Chuck Davis
Referenced has been sometimes closing itself and other times performing a hard lock of the desktop. The only thing I can find in the log is merely a warning: INFO [org.netbeans.core.netigso.Netigso]: bundle org.eclipse.osgi@3.9.1.v20140110-1610 started INFO [org.netbeans.core.network.proxy.Networ

Re: felix bundles

2021-05-11 Thread Chuck Davis
I'm back to experimenting with bundles to run on Felix and ran into this message ERROR: Bundle yrs.contractor.LedgerReportsBundle [88] Error starting atomos:boot:file:///sata2/modules/felix/LedgerReportsBundle-1.0.0 .jar (org.osgi.framework.BundleException: Unable to resolve yrs.contractor.LedgerR

Re: FXML import statement issue in Maven based project

2020-08-15 Thread Chuck Davis
javafx.fxml; > opens org.openjfx.fxmavenfxml to javafx.web; > exports org.openjfx.fxmavenfxml; > } > > Should I keep the new "opens org.openjfx.fxmavenfxml to javafx.web;"? > > Thanks again > On Sunday, August 16, 2020, 12:49:46 AM GMT+4:30, Chuck Davis <

Re: FXML import statement issue in Maven based project

2020-08-15 Thread Chuck Davis
Did you revise the module file? On Sat, Aug 15, 2020 at 11:34 AM HRH wrote: > Hi, > > I had an FXML file that was working fine until I added an UI component > "WebView". The in the FXML file > marked as an error because somehow the javafx.web from the JavaFx\Lib is > not seen. I have already mo

Re: JavaFX 12

2020-08-10 Thread Chuck Davis
You'll also have to update the plugins. i.e. change the compiler plugin to 3.8.1 and any others that have a newer version available. Following section of my POM. org.apache.maven.plugins maven-compiler-plugin 3.8.1

Re: JavaFX 12

2020-08-10 Thread Chuck Davis
Update your POM to latest versions of Maven artifacts. On Mon, Aug 10, 2020 at 3:34 AM HRH wrote: > I forgot to indicated, that I have already modified the > > > > org.me.learningfx.control.MavenFxBasicDemo > > > in the pom.xml file. > > Thanks > > > On Monday, August 10, 2

Re: JavaFX 12

2020-08-05 Thread Chuck Davis
cture=x86-64-bit > > Scott > > On Aug 5, 2020, at 4:03 PM, Chuck Davis wrote: > >  > I suggest you take Ernie's suggestion to get started (use the fxml > archtype). You can build and run your application in NB. The first thing > to do after creating the project

Re: JavaFX 12

2020-08-05 Thread Chuck Davis
I suggest you take Ernie's suggestion to get started (use the fxml archtype). You can build and run your application in NB. The first thing to do after creating the project is edit the POM to update to newer versions of Maven artifacts. Then, when you wish to run your application outside NB you

Re: Statement of disappointment

2020-03-09 Thread Chuck Davis
Paul, many of us "feel your pain" with what Oracle did to JavaFX. But all is not lost. Take a look here: http://netbeans.apache.org/kb/docs/java/ Scroll down to the JavaFX section and click on the first item. You will see how completely easy it is to develop JavaFX with Netbeans and Maven. Of

Re: WARNING: INFECTED: Re: deployable javafx app

2019-12-03 Thread Chuck Davis
ually. On Tue, Dec 3, 2019 at 2:29 AM Jens Zurawski wrote: > Warning, this is a malicious link in this mail. Do not click on it! > > Am 03.12.2019 um 03:54 schrieb Chuck Davis: > > Chris, the documentation @ maven.apahce.org is getting better all the > time. It's even gotten

Re: deployable javafx app

2019-12-02 Thread Chuck Davis
Chris, the documentation @ maven.apahce.org is getting better all the time. It's even gotten understandable lately. Certainly enough to get you started. Start in the "User Center". On Mon, Dec 2, 2019 at 6:22 PM Chris Olsen wrote: > Hello, Everyone -- > > I have a (possibly) related questio

Re: Hopefully close to the finish line with Java 11 & FX

2019-09-27 Thread Chuck Davis
Done. On Fri, Sep 27, 2019 at 8:09 AM Geertjan Wielenga wrote: > Also, please comment your support for this PR, which updates the Maven > plugin for OpenJFX to support both JDK 8 and beyond: > > https://github.com/openjfx/javafx-maven-plugin/pull/44 > > Gj > > >

Re: Hopefully close to the finish line with Java 11 & FX

2019-09-27 Thread Chuck Davis
I think that is a fabulous idea I've been advocating for since JDK11 was released. What is on the "create a new project" menu needs to create a project that will build and run in the IDE. On Fri, Sep 27, 2019 at 7:24 AM Geertjan Wielenga wrote: > > On Fri, Sep 27, 2019 a

Re: Hopefully close to the finish line with Java 11 & FX

2019-09-27 Thread Chuck Davis
If using a "sample" is required that should be indicated someplace where users will find it a project creation time. I've been using NB for many years and have never had to resort to using a sample to create a project. It's not what a user would expect in my opinion. If NB wants to maintain compa

Re: Hopefully close to the finish line with Java 11 & FX

2019-09-27 Thread Chuck Davis
stead: > > > https://github.com/apache/netbeans/blob/master/java/maven/src/org/netbeans/modules/maven/newproject/MavenWizardIterator.java > > See line 76 to 80 in the above. > > Gj > > > On Fri, Sep 27, 2019 at 3:10 PM Chuck Davis wrote: > >> I don't think

Re: Hopefully close to the finish line with Java 11 & FX

2019-09-27 Thread Chuck Davis
I don't think most users are going to build a project from samples (they expect what's on the menu to work). Fortunately, I cared enough to find work-arounds people had posted on the internet but for new users it's a bombshell. On Fri, Sep 27, 2019 at 7:07 AM Geertjan Wielenga wrote: > Go to th

Re: Hopefully close to the finish line with Java 11 & FX

2019-09-27 Thread Chuck Davis
ve to manually add the javafx-plugin to your Gradle build > script. Perhaps we can get that fixed with a tweak to the new project > wizard for Gradle-based projects. > > Scott > > > On Sep 27, 2019, at 9:47 AM, Chuck Davis wrote: > > Chris: > > NB has not ma

Re: Hopefully close to the finish line with Java 11 & FX

2019-09-27 Thread Chuck Davis
I should have added "that compiles" under JDK 12. It may still work with JDK 8 -- don't know. On Fri, Sep 27, 2019 at 7:00 AM Chuck Davis wrote: > I just tried it a few minutes ago to be sure it hadn't been fixed. NB > 11.1 does NOT create a JFX application that compiles. > > >

Re: Hopefully close to the finish line with Java 11 & FX

2019-09-27 Thread Chuck Davis
gt; Gj > > On Fri, Sep 27, 2019 at 2:54 PM Chuck Davis wrote: > >> Chris: >> >> NB has not made a JFX project that works since JDK8. The JavaFX >> application should be taken off the new project menu until such time as it >> can build and run a JFX application.

Re: Hopefully close to the finish line with Java 11 & FX

2019-09-27 Thread Chuck Davis
Scott, glad to hear I'm not the only one with major headaches. Java 8 and Java 11 are such vastly different creatures I don't see how anyone would expect NB to address both equally well. It militates for a break in compatibility with the IDE in my opinion. Those who want to stay on Java 8 can co

Re: Hopefully close to the finish line with Java 11 & FX

2019-09-27 Thread Chuck Davis
Chris: NB has not made a JFX project that works since JDK8. The JavaFX application should be taken off the new project menu until such time as it can build and run a JFX application. You might find some help here: https://openjfx.io/openjfx-docs/#maven You can use NB to create the application

Re: Netbeans 11 won't launch in Windows 10 (Fixed, PEBCAK)

2019-09-23 Thread Chuck Davis
Thanks, Carl, for letting us know you're off and running. What I don't understand is why setting the JAVA_HOME variable is not the default in the AdoptOpenJDK installation. It should be. Other people are going to miss that during install and have the same problems you experienced I fear. I

Re: Netbeans 11 won't launch in Windows 10

2019-09-23 Thread Chuck Davis
compatibility with my office work (which is still on 8, and > rarely uses language features later than 6). > > Out of curiosity, which version on Windows is on that old Windows box? > This is Windows 10 Home 1809. It could be differences between Home and Pro, > or between major relea

Re: Netbeans 11 won't launch in Windows 10

2019-09-22 Thread Chuck Davis
Carl: I just fired up an old Windows 10 box that I turn on every 3 to 4 months to test my hypothesis. Installed like a hot knife through butter. The only glitch might be you have to check @ installation of AdoptOpenJDK 13 to have it modify the JAVA_HOME environment variable. If you miss that (i

Re: Netbeans 11 won't launch in Windows 10

2019-09-22 Thread Chuck Davis
Carl: Can this possibly be true? I just visited the site and you must choose which JVM you wish to install. AdoptOpenJDK would not be used by anyone if there is no JRE in it. Sounds to me like your install is screwed-up. Can you upgrade to version JDK 13, reinstall NB 11.1 and see what happens

Re: Minor NetBeans 11 issues

2019-03-26 Thread Chuck Davis
Works here on VC 4 On Tuesday, March 26, 2019 3:16:26 PM PDT Brenden Towey wrote: > - "Alt-Enter" to show hints in the editor didn't work for me in NB10, > and it doesn't work in NB11. Example: add "implements Runnable" to a > random class, and try to use Alt-Enter to show the menu. Nothing > ha

Re: NB 10 does not reopen files on restart

2019-03-21 Thread Chuck Davis
NB should open what was open last time it closed normally. If it terminates unexpectedly it should still open what was open at the last normal close. If you close NB normally and it does not open correctly what was open when you closed, it should be reported as a bug -- especially if it is reprod

Re: NPE when refactoring with NB 11

2019-03-11 Thread Chuck Davis
Out of curiosity: did you install nb-javac in your 11 installation? Also, you might check the amount of memory available to NB. I have no idea if these may impact your issue but I think installing nb-javac has had an impact (positive impact) on some of my code.refactoring vs. not installing it.

Re: problem installing GUI Builder in netbeans9.0

2018-09-22 Thread Chuck Davis
As an alternative you might consider PDFBox. I used iReport for a period before it went private since at that time Java Print was unusable for business reporting. At that point I looked for alternatives and landed with PDFBox. Maybe it will work and maybe not. It is, however, an Apache project

Re: JavaFX for NetBeans GUI

2018-08-21 Thread Chuck Davis
k you Linux, > thank you GTK, thank you Java/Swing, thank you open source. Thank you > every other Apache project I can run on Linux. > > > On Mon, Aug 20, 2018 at 3:09 PM, Chuck Davis wrote: > >> Microsoft will continue laughing all the way to the bank as long as they >&

Re: JavaFX for NetBeans GUI

2018-08-21 Thread Chuck Davis
And it's not going to become common in the consumer market if it keeps being threatened with abandonment, discontinuance, etc. Perhaps becoming open source will give people confidence it will be around for a while. Unfortunately, integration with other MS desktop offerings holds a powerful influen

Re: JavaFX for NetBeans GUI

2018-08-21 Thread Chuck Davis
Microsoft doesn't create the desktop apps. They created a rich environment for businesses to create the apps. Can you say Intuit (their on-line version is not a big hit from what I've heard)? Nearly all accounting packages are built for Windows only. Nearly everything used in businesses is buil

Re: JavaFX for NetBeans GUI

2018-08-20 Thread Chuck Davis
Microsoft will continue laughing all the way to the bank as long as they can keep the Java crowd believing their desktop monopoly is just a niche market. In the US small businesses are the largest employer segment and we live on a desktop. More and more of them with larger and larger screens. Of

Re: Compiling issue

2018-07-17 Thread Chuck Davis
As I recall, JavaHelp is not included in Apache NB. The developers are considering possible alternatives if I remember correctly since JavaHelp cannot be relicensed to the Apache license. On Tue, Jul 17, 2018 at 7:01 AM, Marco Rossi wrote: > Hi everybody, > at last I found some time to spend try

Re: [GUI Editor]

2018-04-17 Thread Chuck Davis
Tools->Options->Java->GUI Builder Check the box "Show Assistant". I think this is that for which you are looking. On Tue, Apr 17, 2018 at 5:55 PM, Joseph Huber wrote: > Hello! > > > > In the NetBeans GUI editor, when on the “Design” tab, there is normally a > help bar (with a light bulb icon

Re: java.util.zip.CRC32C cannot be found on the system module path

2018-04-03 Thread Chuck Davis
This appears to be the same as I reported @ [NETBEANS-413]. In my case I was implementing jdk9 WebSocket. jdk8 WebSocket is entirely different and does not show the error -- for whatever reason. On Tue, Apr 3, 2018 at 4:08 PM, Efrem Mc wrote: > HI Glenn, > > I went to an existing Java Applicat

Re: Apache NetBeans needs you...

2018-03-07 Thread Chuck Davis
I'm currently in Seattle working on a contract accounting project but when I get home Friday I'll join NetCAT. Any particular area of need? I'll be using Linux. On Wed, Mar 7, 2018 at 12:41 PM, Geertjan Wielenga < geertjan.wiele...@googlemail.com> wrote: > > Excellent. Click the link st the sta

Re: Apache NetBeans needs you...

2018-03-07 Thread Chuck Davis
Being recently retired I have some time on my hands. I am not an expert at anything but if somebody wants to hold my hand and tell me what to do -- I'll try. I've used the GUI builder substantially in the past but have moved on to FX for my apps. I need to learn how Maven works -- it's a big my

Re: [VOTE] Apache NetBeans Logo

2018-03-01 Thread Chuck Davis
I like a colorful life: #2 On Thu, Mar 1, 2018 at 8:15 AM, stephen cumminger < stephen.cummin...@sonideft.com> wrote: > #2 > > > > On 2018-03-01 07:34, Antonio wrote: > > Hi all, > > For popular demand let's vote about the NetBeans Logo in the mailing list, > that's easier for everybody, right?

Re: Please tell me where to go

2018-01-10 Thread Chuck Davis
That is quite strange. I've never seen Oracle jdk installed there. In my case Oracle jdk always installs itself to /usr/java/ for example: /usr/java/jdk-9.0.1 /usr/java/jdk1.8.0_152 Looks like maybe you got something from the Ubuntu repositories that claims to be Oracle java? I'd suggest goin

Re: Please tell me where to go

2018-01-10 Thread Chuck Davis
What is your platform (os)? What have you done -- how did you install NB? What happens when you click on the desktop icon? What happens if you start the binary from a command prompt? Which Java do you have installed? On Wed, Jan 10, 2018 at 9:03 AM, Wyckham Seelig wrote: > Hello, > > Can somebod