Re: How to stop output "wobbling"?

2024-03-07 Thread Owen Thomas
Correction in bold... On Fri, 8 Mar 2024 at 13:26, Owen Thomas wrote: > So, I call invokeAnWait for both cases, and although the mechanism works > slower by a factor of about 100 (cf. the attached - ~4ms versus *[~40μs]*), > the wobble appears to have gone. >

Re: How to stop output "wobbling"?

2024-03-07 Thread Owen Thomas
Thanks Thomas for the tip. I think I have made an appropriate correction. I was calling invokeLater on a method that adds a character to the output for anything that wasn't a newline. For newlines I would call invokeAndWait when I was displaying the output in the window. It seems that using

No new project from "Java Project from existing Sources"

2024-03-07 Thread Ulf Zibis
Hi, I have old java sources, which I want to work on with NetBeans 21. Location of the existing sources is: ~/Projects/Palm/NetbeansProjects/DesktopFiles_src/ Location for the new project is: ~/Projects/Palm/NetbeansProjects/DesktopFiles/ So these are separate paths, but I get: ! Project

Entity classes from database wizard not working. NetBeans 21.

2024-03-07 Thread Klerman
Hello, The Entity Classes from Database Wizard doesn't work anymore. I haven't used it for some time, and I suspect that it doesn't work after a NetBeans upgrade. Here is the description of the issue, the best I can do. Please excuse any informality that could be in this report. In the Services

Re: How to stop output "wobbling"?

2024-03-07 Thread Thomas Wolf
You’re making all the Swing calls in the EDT (vs directly in the threads you mentioned), right?TomOn Mar 7, 2024, at 6:40 AM, Owen Thomas wrote:The numbers running down the left are milliseconds, all others are nanos. As you can see, all this happens within the same millisecond, and perhaps I'm

Re: How to stop output "wobbling"?

2024-03-07 Thread Owen Thomas
The numbers running down the left are milliseconds, all others are nanos. As you can see, all this happens within the same millisecond, and perhaps I'm thinking that Swing wasn't built with rendering output at this rate in mind. Anyway, I'd love to know what people have to say. :) On Thu, 7 Mar

How to stop output "wobbling"?

2024-03-07 Thread Owen Thomas
Hello Netbeans people. This is not a question for Netbeans itself, but I know there are a lot of clever people here who may be able to give me a pointer or two, so please look away if this question might offend. I hope it doesn't. :) My program uses Swing. It outputs text to a window. The output