Re: Custom Bean Forms

2024-07-05 Thread Sean Carrick
Antonio, You are a god among men! Thank you so much. I knew that I was forgetting something simple, and that was the MANIFEST entry. Like you, it had been ages since I had done this and could not remember what all needed to be done to make it work. You are awesome! Sincerely, Sean Carrick

Custom Bean Forms

2024-07-04 Thread Sean Carrick
or message. What is the trick to being able to visually edit custom visual components as forms in Matisse. I know that I must be missing something... Thanks in advance for your help. Sincerely, Sean Carrick Owner - PekinSOFT Systems s...@pekinsoft.com

Re: How to create property/getter/setter methods for JavaFX property using NB 22

2024-05-07 Thread Sean Carrick
-plate code. Once the boiler-plate is in place, it is up to the developer to edit the default code to fit their needs. I hope this helps you out. Sincerely, Sean Carrick Owner - PekinSOFT Systems s...@pekinsoft.com (309) 989-0672 On Tue, May 7, 2024 at 6:56 AM PavelTurk wrote: > Hi

Ant Project Group

2024-02-11 Thread Sean Carrick
Hey all! I am going to start by saying that I prefer Ant+Ivy for development of my projects over Maven, so please do not ask why I do not switch to Maven. NetBeans allows for creating /Project Groups/ to group projects together and I fully understand how to accomplish that, but I am

Re: Compiling an Annotation Processor Class

2023-10-22 Thread Sean Carrick
processor is located open? I have successfully compiled the entire project, but still am not able to use this processor on compile. What am I missing here? All help is greatly appreciated! -SC On 10/22/23 20:03, Sean Carrick wrote: Hey, All! I have created an annotation to place application resource

Compiling an Annotation Processor Class

2023-10-22 Thread Sean Carrick
Hey, All! I have created an annotation to place application resources directly into a class, and an annotation processor to process those annotations into "Bundle.properties" and "Bundle.java" files in the same package as the annotated class. When I attempt to compile the file

Re: NetBeans won´t suggest import any java.sql.* class

2023-03-29 Thread Sean Carrick
>From what I've seen, it's been an issue since JDK 9. After the JDK was modularized, it seems that this has been the way it is. The last version of NetBeans that imports SQL package is NetBeans 8.2 when using Ctrl+Shift+I. If you use a newer version of NetBeans and have your default JDK as 8, the

Re: JavaDoc - Redirect Output

2023-02-25 Thread Sean Carrick
/MyProject/ └── nbproject     └── project.properties Does this help? -SC On 2/25/23 8:24 PM, Amn Ojee Uw wrote: Fascinating ... Can you decrypt this line : ${basedir}/nbproject/project.properties Thanks On 2023-02-25 6:31 p.m., Sean Carrick wrote: Amn, Per the JavaDoc references at the Orac

Re: JavaDoc - Redirect Output

2023-02-25 Thread Sean Carrick
Amn, Per the JavaDoc references at the Oracle website: -d directory Specifies the destination directory where the javadoc command saves the generated HTML files. If you omit the -d option, then the files are saved to the current directory. The directory value can be absolute or relative to

Re: Template tutorial

2023-02-25 Thread Sean Carrick
/23 5:19 AM, Antonio wrote: So you've dared to update the tutorial??? Very well done!! Way to go! Reviewed! Thanks, Antonio On 23/2/23 23:04, Sean Carrick wrote: Just as a quick follow-up, I updated the tutorial file on GitHub to reflect that it was pointing to the wrong modules. Once the team

Re: Template tutorial

2023-02-23 Thread Sean Carrick
Rick, Just as a quick follow-up, I updated the tutorial file on GitHub to reflect that it was pointing to the wrong modules. Once the team has a chance to review and merge my PR, the tutorial will be updated. On 2/23/23 3:38 PM, Sean Carrick wrote: Rick, I just confirmed

Re: Template tutorial

2023-02-23 Thread Sean Carrick
an issue against that tutorial and whenever someone has time they would fix the information... -SC On 2/23/23 3:15 PM, Sean Carrick wrote: Rick, I'm going to go with an error in the tutorial. I only say this because all of the tutorials currently need to be reviewed for accuracy and, in my

Re: Database response with timestamp shows the String object not value

2023-02-23 Thread Sean Carrick
Christopher, What is the code you are using to display the values? From the screenshot you provided, it looks like you just passed an object and its /toString()/ method is being used to display it. -SC On 2/23/23 9:28 AM, Christopher M. Logan wrote: Here is a screenshot showing the issue.

Re: Template tutorial

2023-02-23 Thread Sean Carrick
installation? or error/s in the tutorial? Apologies for the replies to wrong address. On 23/02/2023 04:42, Sean Carrick wrote: Rick, You need to set a dependency in each module that uses them on the /File Templates/ and /Base Utilities API/ libraries in order to use them. Per yo

Re: hibernate

2023-02-22 Thread Sean Carrick
Robert, Yes, it is possible if you have the binary JARs for Hibernate (at a minimum). You would also want to get the JavaDoc and Sources archives, if possible, to improve the integration within NetBeans. Simply click on *Tools | Libraries* to open the Ant Library Manager dialog. Once it is

Re: Template tutorial

2023-02-22 Thread Sean Carrick
Rick, You need to set a dependency in each module that uses them on the /File Templates/ and /Base Utilities API/ libraries in order to use them. Per your compiler output: /home/rick/Projects/AdditionalFileTemplates/src/org/myorg/additionalfiletemplates/package-info.java:5: error:

Re: How To Add a Custom Bug Report Feature to ErrorManager or Exceptions

2023-02-14 Thread Sean Carrick
:42, Scott Palmer wrote: That's strange. How did you configure the JDK for your project? On Mon, Feb 13, 2023 at 7:52 AM Sean Carrick wrote: Hey, Ernie! I don't mind at all. I'm using JDK 11 now. I tried using JDK 19, but it didn't work…the compiler kept stating that source level

Re: java.sql missing from java.base in Netbeans 16 JDK 18 defaults

2023-02-13 Thread Sean Carrick
nderstand how to use the JDK more effectively. -SC On 2/13/23 1:21 PM, Sean Carrick wrote: One more time... You _/*must add the dependency in your module.info file*/_. The only module of the JDK that is included by default in any modular Java project is the java.base module. /All other

Re: java.sql missing from java.base in Netbeans 16 JDK 18 defaults

2023-02-13 Thread Sean Carrick
One more time... You _/*must add the dependency in your module.info file*/_. The only module of the JDK that is included by default in any modular Java project is the java.base module. /All other needed modules *must be* manually included in your module-info.java file. /For example: module

Re: How To Add a Custom Bug Report Feature to ErrorManager or Exceptions

2023-02-13 Thread Sean Carrick
t? On Mon, Feb 13, 2023 at 7:52 AM Sean Carrick <mailto:s...@pekinsoft.com>> wrote: Hey, Ernie! I don't mind at all. I'm using JDK 11 now. I tried using JDK 19, but it didn't work…the compiler kept stating that source level XX is not supported for every version from

Re: Reconfigure Netbeans 14 JDK 18 defaults

2023-02-13 Thread Sean Carrick
Amitabh, In your module.info file for each module that needs access to the Java SQL API, you must put the following: module my.module.name {     requires java.sql;     // Rest of your module configuration, such as exports, uses, provides, etc. } Since the Java SQL API is not in the

Re: [CSS] Tried all, cannot disable automation

2023-02-13 Thread Sean Carrick
ag, Then, besides the Editor category in the Options dialog, you'll want to also look in the language-specific categories of interest as well. For HTML and JS, there's the HTML/JS Options category that you'll want to check out... -SC On 2/12/23 9:18 PM, Eduard Cation wrote: I will try

Re: How To Add a Custom Bug Report Feature to ErrorManager or Exceptions

2023-02-13 Thread Sean Carrick
:38 AM, Sean Carrick wrote: > > > > Hey All! > > > > I am working on an NBP application and am wondering how I can create a > > custom "Submit Bug Report" action when using the ErrorManager or > > Exceptions APIs. > > > Hey Sean, > >

Re: [CSS] Tried all, cannot disable automation

2023-02-12 Thread Sean Carrick
ag, You need to take a look through the tabs in Tools...Options...Editor. I am fairly sure that everything you are wanting to change can be in those tabs... -SC On 2/11/23 7:28 PM, Eduard Cation wrote: CSS. No option to mod the way the editor interacts with it. With php I was able to

Re: How To Add a Custom Bug Report Feature to ErrorManager or Exceptions

2023-02-10 Thread Sean Carrick
Patrik, Thank you very much! That is perfect! My Google search game must need some work, because that link did not come up in my searches at all. I truly appreciate your assistance on this question. -Sean C. On 2/10/23 11:16 AM, Patrik Karlström wrote: Might this help?

How To Add a Custom Bug Report Feature to ErrorManager or Exceptions

2023-02-10 Thread Sean Carrick
Hey All! I am working on an NBP application and am wondering how I can create a custom "Submit Bug Report" action when using the ErrorManager or Exceptions APIs. Basically, I moved all of my projects from GitHub to GitLab because of a certain feature offered by the latter: Service Desk.

Re: Javadoc - font and background colours

2023-01-30 Thread Sean Carrick
A quick Google search got me here: https://www.oracle.com/java/technologies/javase/javadoc-tool.html#javadocdocuments Sincerely, Sean Carrick Owner - PekinSOFT Systems s...@pekinsoft.com (309) 989-0672 On Mon, Jan 30, 2023 at 4:00 PM Amn Ojee Uw wrote: > Thank you for your prompt respo

Re: Missing project ZIP file for NB16 within Building, Debugging, and Testing trail

2023-01-18 Thread Sean Carrick
Or, you could see if one of these repositories matches up with the tutorial you were working on: https://github.com/search?q=JUnitSampleSol Sincerely, Sean Carrick Owner - PekinSOFT Systems s...@pekinsoft.com (309) 989-0672 On Wed, Jan 18, 2023 at 2:22 PM Arshad Noor wrote: > He

Re: Missing project ZIP file for NB16 within Building, Debugging, and Testing trail

2023-01-18 Thread Sean Carrick
Arshad, That is an old link to the NetBeans.org website which went away back in 2020 (I believe). You could try pasting that link into the Wayback Machine <https://web.archive.org> (https://web.archive.org) and searching around that way. Sincerely, Sean Carrick Owner - PekinSOFT Sys

Re: NB 16 code template expansion

2023-01-13 Thread Sean Carrick
why I try not to switch IDEs very often... Sincerely, Sean Carrick Owner - PekinSOFT Systems s...@pekinsoft.com (309) 989-0672 On Thu, Jan 12, 2023 at 9:24 AM Christopher C. Lanz wrote: > Hello, in messing around about other problems, I seem to have disabled > code template expansion. (Ty

Re: What happened with Netbeans bug reporting?

2022-12-07 Thread Sean Carrick
only have needed to change the private code of the old bug reporter to redirect to the Service Desk email address...Just an FYI for the future, maybe. Sincerely, Sean Carrick Owner - PekinSOFT Systems s...@pekinsoft.com (309) 989-0672 On Wed, Dec 7, 2022 at 9:05 AM Neil C Smith wrote: > On Mo

Re: EJB by using Apache Netbeans

2022-11-05 Thread Sean Carrick
Abduladem, The tutorials are still being worked on to bring them up to the current versions of NetBeans. Since the transition to Apache, the developers are donating what little spare time they have to keep the project going. Having said that, however, you can still follow the tutorials as they

Dropping Beans on the GUI Designer

2022-11-04 Thread Sean Carrick
isual designer. Simply declaring the List in the code editor does not allow the BeansBinding support to see it, so it cannot be used to bind, for example, a JTable to a List. Thank you for any pointers that you can give. They are greatly appreciated. Sincerely, Sean Carrick Owner - PekinSOFT Syst

Getting RCP Application Name at Runtime

2022-10-16 Thread Sean Carrick
to retrieve that information would be greatly appreciated. Thank you! Sincerely, Sean Carrick Owner - PekinSOFT Systems s...@pekinsoft.com (309) 989-0672

Re: netbeans.info

2022-10-10 Thread Sean Carrick
I just took a look at that site and discovered that it only includes NetBeans installers for Mac OS on it. Perhaps it is someone that is maintaining the older site for Mac users? Sincerely, Sean Carrick Owner - PekinSOFT Systems s...@pekinsoft.com (309) 989-0672 On Sun, Oct 2, 2022 at 3:01 AM

Re: Recompile with -Xlint:unchecked

2022-04-15 Thread Sean Carrick
No problem! Just enjoy NB... Sincerely, Sean Carrick Owner - PekinSOFT Systems s...@pekinsoft.com (309) 989-0672 On Fri, Apr 15, 2022 at 3:53 PM Amn Ojee Uw wrote: > Amazing!! > Thanks sooo much. > On 2022-04-15 3:45 p.m., Sean Carrick wrote: > > Project Properties.

Re: Recompile with -Xlint:unchecked

2022-04-15 Thread Sean Carrick
Project Properties...Compiling tab...Additional Compiler Options: [image: image.png] Sincerely, Sean Carrick Owner - PekinSOFT Systems s...@pekinsoft.com (309) 989-0672 On Fri, Apr 15, 2022 at 1:50 PM Amn Ojee Uw wrote: > I am getting this working and don't know NetBeans enough to reso

Updating an Old Plugin and Having Issues

2022-01-16 Thread Sean Carrick
).getVariablesSection().getStartPosition().getOffset(); } else { // ... rest of code goes on for lines and lines ... IF someone can point me in the right direction, it will be greatly appreciated! Sincerely, Sean Carrick Owner - PekinSOFT Systems s...@pekinsoft.com (309) 989-0672

Re: Source code for article on Zip Features?

2021-09-12 Thread Sean Carrick
Tim, For java.net references, you can try the Wayback Machine at archive.org/web and paste in the java.net URL in the search box. Sometimes, you get lucky and can get to the source code from back then… -SC On Fri, Sep 3, 2021, 2:47 PM Geertjan Wielenga wrote: > > Just a reality check for you:

Re: Deployment Tutorial Source Files

2021-04-22 Thread Sean Carrick
Just as a quick aside: Whenever you are looking at tutorials or StackOverflow answers regarding Java, a lot of the links will be to either netbeans.org, Project Kenai, or java.net. So, what you should always do is: 1. Rright-click the link 2. Copy the address 3. Go to The Wayback Machine at 

Re: removing the "new project" support for Ant projects

2021-04-22 Thread Sean Carrick
> -1 from me.  I think we made the right steps previously, and perhaps > should look at whether particular templates need updating or removing > entirely.  But Ant still has its place, particularly with regard to > the platform. > > I'd also prefer an unopinionated IDE.  And from an ASF

Re: removing the "new project" support for Ant projects

2021-04-21 Thread Sean Carrick
> No, those projects were not left in the lurch by NetBeans dropping > support for it. Projects were left in the lurch by NetBeans providing > support for it for too early. +1 This is all too true. However, it /does/ make a nice, light-weight library for smaller applications...

Re: removing the "new project" support for Ant projects

2021-04-21 Thread Sean Carrick
GJ, > I think one of the biggest mistakes in the history of NetBeans was to > provide support for the JSR 296 Swing Application Framework (SAF). We > should have waited until it was no longer a JSR. With this statement, I could not agree more strongly with you. NB should have waited to support

Re: removing the "new project" support for Ant projects

2021-04-21 Thread Sean Carrick
Wayne, > > Another issue is that you can't keep it in version control and deploy > to multiple team members very easily. Minor filesystem differences > make that sort of thing impossible to do out of the box. > This is easily handled in an Ant project when you create the project at the beginning.

Re: removing the "new project" support for Ant projects

2021-04-21 Thread Sean Carrick
ain, thank you for your well-thought out and coherent discussion. -SC On 4/21/21 12:56 AM, Will Hartung wrote: > > > On Tue, Apr 20, 2021 at 9:32 PM Sean Carrick <mailto:s...@pekinsoft.com>> wrote: > > Explain to me, Scott, why I **need** to learn Maven and dump A

Re: Netbeans plugins site is down rendering netbeans useless

2021-04-21 Thread Sean Carrick
I need to install the Oracle JS Parser for Netbeans which I cannot do so because the site - plugins.netbeans.org is down. You need to go to: https://plugins.netbeans.apache.org/ The netbeans.org site was decommissioned last month... -SC

Re: removing the "new project" support for Ant projects

2021-04-20 Thread Sean Carrick
It is precisely because you want to focus on getting your software out that you *need* to learn the modern tools for doing so. Your Gradle project file could literally be one line, depending on your needs. Maven is certainly more verbose (My preference is Gradle), but the

Re: removing the "new project" support for Ant projects

2021-04-20 Thread Sean Carrick
GJ, My apologies! It seems I kicked off more than I expected with my comments. Feel free to slap me if you ever see me... -SC On 4/20/21 2:33 PM, Geertjan Wielenga wrote: > No one is suggesting removing support for Ant altogether. > > The suggestion is to remove the possibility of creating new

Re: removing the "new project" support for Ant projects

2021-04-20 Thread Sean Carrick
GJ, While I get where you are coming from, there are still a bunch of legacy applications out there built on the AppFramework, which I do not believe will be able to be converted to Maven. People are still using NB <= 8.2 simply for the AppFramework IDE integration to maintain those legacy

Re: Doesn't Help-->Check for Updates update 12.1 to 12.3?

2021-03-24 Thread Sean Carrick
LK > > but it's too early to say anything. > Too funny not to comment on this! It may be too early, but you said it anyway.:-P -SC - To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org For additional commands, e-mail:

Re: NEED EXAMPLE CODE: how to use database to fill out NB Form

2021-03-22 Thread Sean Carrick
Amy, I was just looking through this thread for the first time and found that in your original post, you asked about saving data from a form into a Derby database: > Could someone please provide sample Java code f9or NetBeans to capture data > filled out in NB form into a Java derby database?

EclipseLink Persistence in Platform Development

2020-12-12 Thread Sean Carrick
Hey All! I am working on a platform project that is using Derby/Embedded as the database. I have created a Persistence Unit XML file and the Entity models within one of my project modules. However, I am unable to access the database in this manner and have a question regarding this issue. I