SQLite-JDBC - Tutorial needed

2023-05-29 Thread Amn Ojee Uw

Hello!

Can anyone recommend me a tutorial about using *sqlite-jdbc* in a 'Java 
Web > Web Application' project?


Any help is much appreciated.


Re: Console: ascii characters not shown correctly

2023-05-01 Thread Amn Ojee Uw
It would be easier to assert the why if you provide the what. Show the 
code that produces the output and someone here will assert why the output.


On 2023-05-01 11:46 a.m., Geert Vancompernolle wrote:

I have the following line in my Java application:

mLogger.info("╔╗"); 



but I see this in the debug console of NB17:

01-05-2023 17:43:22 INFO HomeControl - 
╔��������������������������������������������������������������������������������╗


How can I get the correct ascii characters in NB17?  Previous versions 
of NB (e.g. NB12.5) showed this correctly




-
To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org
For additional commands, e-mail: users-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



Re: NB17 Extra lines after Run??

2023-05-01 Thread Amn Ojee Uw

Yes! Thank you, it worked.

On 2023-04-29 11:02 a.m., joe foe wrote:
It's due to debug mode. Set  Tools >options>java> verbosity level to 
Normal.


The extra lines won't be output.

On Sat, Apr 29, 2023, 3:42 AM Tim de Vries  wrote:

probably, you've got an ANSIBlock setting your display settings.


You probably need a test method to determine what's real.

Tim


probably  a static {this, that} block within a class within your
classpath.., yes/no? , ...


James

    On 2023-04-28 6:15 p.m., Amn Ojee Uw wrote:


Hey folks!

I might have done some tweaking  and being the newbie that I am I
ended up messing up NB17. Now when I Click on Run, I get the
proper output as well as the following lines:

*BUILD SUCCESSFUL (total time: 0 seconds)
Could not load a dependent class (jdepend/textui/JDepend) for
type jdepend
Could not load a dependent class
(javax/media/jai/PlanarImage) for type image
Could not load class

(org.apache.tools.ant.taskdefs.optional.junitlauncher.confined.JUnitLauncherTask)
for type junitlauncher
Could not load a dependent class
(org/tukaani/xz/FilterOptions) for type xzresource
Could not load class
(org.apache.tools.ant.taskdefs.optional.image.ImageIOTask)
for type imageio
Could not load a dependent class
(org/tukaani/xz/FilterOptions) for type xz
Could not load a dependent class (jdepend/textui/JDepend) for
type jdepend
Could not load a dependent class
(javax/media/jai/PlanarImage) for type image
Could not load class

(org.apache.tools.ant.taskdefs.optional.junitlauncher.confined.JUnitLauncherTask)
for type junitlauncher
Could not load a dependent class
(org/tukaani/xz/FilterOptions) for type xzresource
Could not load class
(org.apache.tools.ant.taskdefs.optional.image.ImageIOTask)
for type imageio
Could not load a dependent class
(org/tukaani/xz/FilterOptions) for type xz
*

Anyone here can tell me what changed? Why am I getting all those
lines?

Thanks in advance


NB17 Extra lines after Run??

2023-04-28 Thread Amn Ojee Uw

Hey folks!

I might have done some tweaking  and being the newbie that I am I ended 
up messing up NB17. Now when I Click on Run, I get the proper output as 
well as the following lines:


   *BUILD SUCCESSFUL (total time: 0 seconds)
   Could not load a dependent class (jdepend/textui/JDepend) for type
   jdepend
   Could not load a dependent class (javax/media/jai/PlanarImage) for
   type image
   Could not load class
   
(org.apache.tools.ant.taskdefs.optional.junitlauncher.confined.JUnitLauncherTask)
   for type junitlauncher
   Could not load a dependent class (org/tukaani/xz/FilterOptions) for
   type xzresource
   Could not load class
   (org.apache.tools.ant.taskdefs.optional.image.ImageIOTask) for type
   imageio
   Could not load a dependent class (org/tukaani/xz/FilterOptions) for
   type xz
   Could not load a dependent class (jdepend/textui/JDepend) for type
   jdepend
   Could not load a dependent class (javax/media/jai/PlanarImage) for
   type image
   Could not load class
   
(org.apache.tools.ant.taskdefs.optional.junitlauncher.confined.JUnitLauncherTask)
   for type junitlauncher
   Could not load a dependent class (org/tukaani/xz/FilterOptions) for
   type xzresource
   Could not load class
   (org.apache.tools.ant.taskdefs.optional.image.ImageIOTask) for type
   imageio
   Could not load a dependent class (org/tukaani/xz/FilterOptions) for
   type xz
   *

Anyone here can tell me what changed? Why am I getting all those lines?

Thanks in advance


Re: JavaDoc - Redirect Output

2023-02-25 Thread Amn Ojee Uw

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 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 the current working directory. The destination 
directory is automatically created when the javadoc command runs.


In a NetBeans project, the ${basedir}/nbproject/project.properties 
file contains the value dist.javadoc.dir=${dist.dir}/javadoc. So, if 
building the documentation from within the IDE, you could change this 
property to a different location.


-SC


On 2/25/23 5:00 PM, Amn Ojee Uw wrote:
Is it possible to redirect the output of JavaDocs in NetBeans 16 to a 
directory of choice?

Thanks in advance.


-
To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org
For additional commands, e-mail: users-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



-
To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org
For additional commands, e-mail: users-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



JavaDoc - Redirect Output

2023-02-25 Thread Amn Ojee Uw
Is it possible to redirect the output of JavaDocs in NetBeans 16 to a 
directory of choice?

Thanks in advance.


-
To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org
For additional commands, e-mail: users-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



Re: Javadoc - font and background colours

2023-01-30 Thread Amn Ojee Uw

Thank you for your prompt response.
Where can I find more about the information you have provided?


On 2023-01-30 9:15 a.m., Pieter van den Hombergh wrote:

you can add or replace the css in the web folder.
with a maven task that would be relatively easy.

Op ma 30 jan. 2023 09:12 schreef Amn Ojee Uw :

Hello everyone!
I'd like to change the white background colour of the generated web
pages by JavaDoc.
Is there a mechanism within NB16 to do this?

If NB16 does not have this feature, how do I go about getting
JavaDoc to
change the color/font outputs.

Thanks in advance.


-
To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org
For additional commands, e-mail: users-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists


Javadoc - font and background colours

2023-01-30 Thread Amn Ojee Uw

Hello everyone!
I'd like to change the white background colour of the generated web 
pages by JavaDoc.

Is there a mechanism within NB16 to do this?

If NB16 does not have this feature, how do I go about getting JavaDoc to 
change the color/font outputs.


Thanks in advance.


-
To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org
For additional commands, e-mail: users-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



Rainbow Braces - ???

2023-01-23 Thread Amn Ojee Uw
I was looking for Rainbow Braces in the Tools > Plugins > Available 
plugins, but to no avail! How do I install this plugin?


Thanks!


-
To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org
For additional commands, e-mail: users-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



Re: Tools > Options > Java > Gradle drop down list

2023-01-22 Thread Amn Ojee Uw

Hello Emma.

I chose 'FlatLaf Dark' as my look and feel in (Tools > Options > 
Appearance > Preferred look and feel.), reduces my eyestrain a bit.
Following the steps you provided I was able to successfully duplicate 
you process.
I recommend you change the look and feel, at least to test your provided 
process.

I hope this helps.

On 2023-01-22 9:49 a.m., Emma Atkinson wrote:

Hello
I'm using NB IDE 16 on UbuntuStudio and I have a minor problem with a 
dropdown list of Gradle Distribution Versions. To find the drop down 
list I am talking about navigate as follows:


Tools > Options > Java > Gradle > Execution > Gradle Distribution 
Version > Use Standard Gradle Version


I think the problem is that the text I want to see is white text on a 
white background for most of the entries.  The Gradle  version I am 
using is black text on white background. There is a 7.5 in the list 
too.  There are two options with red text on white background way down 
the list (2.13 and 2.3) The drop down list is long but mainly white 
options.  Running the cursor over the list causes the option under the 
cursor to change to white on blue background, which I can read.   
Hence, it's just a mild irritation I don't encounter often.


Is there something I can do to fix this for me and get it out of my 
head space?


Thank you
Emma





-
To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org
For additional commands, e-mail: users-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



JSP import jar

2023-01-19 Thread Amn Ojee Uw
I have a 'Hello World' Web Page in NB16 using GF as a server [ the GF 
server is provided by NB16].


In the 'Web Pages' the structure is as follows :

Web Pages
    ->WEB-INFO
        -> glassfish-web.xml
    ->css
        ->my_css.css
    ->js
        ->my_js.js
    ->jar
        ->my_jar.jar
    index.jsp

In the 'index.jsp' file I imported the css/js libraries by the usual 
methods [ 
and ]. 
However, I have no idea how to add the 'jar'.


Could someone please help me with this?
Are there any good tutorials on the web that can be recommended?

Thanks in advance.



-
To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org
For additional commands, e-mail: users-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



GlassFish6 with Netbeans16 - No root permission

2023-01-16 Thread Amn Ojee Uw
Glassfish6 is installed in /opt/glassfish6, with '/*root*/' as group and 
owner id. Having stated that, when trying to add Glassfish6 to the list 
of servers in Netbeans16, the server cannot be found, since NB (me) does 
not have root permission.
Should I reinstall GF6 in a local directory, as NB16 recommends when 
trying to add GF6? should I change the owner/group permission of 
/opt/glassfish6? What other choices do I have here?


Thanks in advance.


From GlassFish to Tomcat

2023-01-14 Thread Amn Ojee Uw
I have a small project that uses Glassfish server, however, I would like 
to change the server to Tomcat; how do I do that in NetBeans 16.


Any suggestions would be much, much appreciated.


-
To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org
For additional commands, e-mail: users-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



Fwd: How to add local jar to Gradle

2023-01-08 Thread Amn Ojee Uw

Thank you for your prompt response, please contact me via the mailing list.


 Forwarded Message 
Subject:Re: How to add local jar to Gradle
Date:   Sat, 7 Jan 2023 21:51:17 -0800
From:   Waldo Monroy 
To: Amn Ojee Uw 



Do you still need help?

Thank you and have a great day.
- Waldemar M.


On Jan 7, 2023, at 7:41 PM, Amn Ojee Uw  wrote:

Hello!

Can anyone tell how to add a local jar file to a Gradle-Java with 
Gradle->Web Application using NetBeans 16?


Thanks in advance.


-
To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org
For additional commands, e-mail: users-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



How to add local jar to Gradle

2023-01-07 Thread Amn Ojee Uw

Hello!

Can anyone tell how to add a local jar file to a Gradle-Java with 
Gradle->Web Application using NetBeans 16?


Thanks in advance.


-
To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org
For additional commands, e-mail: users-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



Add server - file permission

2022-12-07 Thread Amn Ojee Uw
In my Debian 11, adding a server to Netbeans 15 requires that I add 
_*the directory*_ '/opt/tomcat/bin', as the place where server is 
located I think 😕
However, the file requires Authentication, is that the reason NB15 
cannot accept the directory as the server directory location?

Anyone know how to add Tomcat and GlassFish to NB15?

Thanks in advance


Re: Spell checker

2022-12-03 Thread Amn Ojee Uw

Yes, you are right, thank you so much!!

On 2022-12-02 7:00 p.m., László Kishalmi wrote:

When there are suggestions  they are displayed.

image.png


On Fri, Dec 2, 2022 at 3:33 PM Amn Ojee Uw  wrote:

Hello Neil and thank you for the prompt response.

I hope that the below better explains the choices, web pages, friends and 
other have giving me.

CTRL-ENTER = Breaks the line in two.
Shift-ENTER = Brings the cursor to the line below.
Alt-ENTER = Displays a menu choice saying
* Add {word} to the project's dictionary
* Add {word} to your private dictionary

However, I'd like to have displayed a list of suggestions, or possible {words}, 
to replace the misspelled {word}; as it is shownhere  
<https://stackoverflow.com/questions/52637541/how-to-get-the-netbeans-8-0-2-spellchecker-to-suggest-corrections>.

Again, thanks for the help.

On 2022-12-02 12:29 p.m., Neil C Smith wrote:

On Fri, 2 Dec 2022 at 16:24, Amn Ojee Uw  
<mailto:amnoje...@gmail.com>  wrote:

In my Debian 11, running Netbeans 14, the spell checker catches the
spelling mistakes; but Shift-Enter, not only does not provide a list of
possible words,

CTRL-ENTER?

Neil

-
To unsubscribe, e-mail:users-unsubscr...@netbeans.apache.org
For additional commands, e-mail:users-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists


Re: Spell checker

2022-12-02 Thread Amn Ojee Uw

Hello Neil and thank you for the prompt response.

I hope that the below better explains the choices, web pages, friends and other 
have giving me.

CTRL-ENTER = Breaks the line in two.
Shift-ENTER = Brings the cursor to the line below.
Alt-ENTER = Displays a menu choice saying
* Add {word} to the project's dictionary
* Add {word} to your private dictionary

However, I'd like to have displayed a list of suggestions, or possible {words}, to 
replace the misspelled {word}; as it is shownhere  
<https://stackoverflow.com/questions/52637541/how-to-get-the-netbeans-8-0-2-spellchecker-to-suggest-corrections>.

Again, thanks for the help.

On 2022-12-02 12:29 p.m., Neil C Smith wrote:

On Fri, 2 Dec 2022 at 16:24, Amn Ojee Uw  wrote:

In my Debian 11, running Netbeans 14, the spell checker catches the
spelling mistakes; but Shift-Enter, not only does not provide a list of
possible words,

CTRL-ENTER?

Neil

-
To unsubscribe, e-mail:users-unsubscr...@netbeans.apache.org
For additional commands, e-mail:users-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists


Spell checker

2022-12-02 Thread Amn Ojee Uw
In my Debian 11, running Netbeans 14, the spell checker catches the 
spelling mistakes; but Shift-Enter, not only does not provide a list of 
possible words, it does not even open a popup window.
If this is an bug to be reported, or if it is an error on my behalf, 
please let me know what I should in order to resolve this issue.

Thanks in advance!!


-
To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org
For additional commands, e-mail: users-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



Re: Installer for Netbeans 15 on Ubuntu?

2022-11-25 Thread Amn Ojee Uw
Interesting web page! Thank you for sharing it. Just a quick question, 
do I need to uninstall NB14 and Java 17, before installing Linux(x89_64) 
- NB15 + JDK 18 (deb x89_64)?

Thanks in advance

On 2022-11-23 3:04 a.m., Paolo Scarabelli wrote:

There are also deb packages:

https://www.codelerity.com/netbeans/

On Debian Testing the "Linux (any architecture)" deb seems to be 
working better (but you will need to install OpenJDK), with the "Linux 
(x86_64)" deb I see the selected editor tab with a black background.



On Wed, Nov 23, 2022 at 8:32 AM Owen Thomas 
 wrote:


Is there an installer for Netbeans 15 on Ubuntu?


Re: Possibility of Netbeans supporting more languages

2022-09-20 Thread Amn Ojee Uw
Thanks, I would love to check it out when I get some downtime.
However,  something tells me that you know the law, but not the message in
it, thank you nonetheless. 😊

On Tue., Sep. 20, 2022, 7:40 a.m. Geertjan Wielenga, <
geertjan.wiele...@googlemail.com> wrote:

> Take a look around at the apache.org website to see what it is about
> (i.e., all volunteer programmers, just like you; you want something, you
> build it).
>
> Gj
>
> On Tue, 20 Sep 2022 at 13:38, Amn Ojee Uw  wrote:
>
>> Well, isn't that the job of the Apache Netbeans.
>> The features requests is what users do.
>> If I have a request and Netbeans wants to include any of us in that teem,
>> one could help. I love the suggestion of the OP, and respect the suggestion
>> being offered. However, accepting that suggestion would require too much
>> effort for a single developer; not only time wise, but also mental and
>> physical, just to mention some. This kind of endeavours are better suited
>> for a stablish company like Apache.
>> I'm offering my help, in case one of the developers need coffee or
>> something from the kitchen :), 7 to 10 hour a week.
>> I truly hope Apache is not just reading this emails,  but also giving
>> them the cerebral value they deserve.
>>
>>
>> On Tue., Sep. 20, 2022, 3:37 a.m. László Kishalmi, <
>> laszlo.kisha...@gmail.com> wrote:
>>
>>> Well, pick a language and start writing the support for that. It's that
>>> simple.
>>>
>>> On Tue, Sep 20, 2022, 00:22 N  wrote:
>>>
>>>> Hello,
>>>>
>>>> I was an ardent user of Netbeans from 2009 to around 2016, while using
>>>> Java (and for a short while when using C++ and Python). I've even written
>>>> about it
>>>> <https://nrecursions.blogspot.com/2014/07/preview-your-webpage-realtime-while.html>,
>>>> and linked to James Gosling's support for Netbeans.
>>>> The reason for mentioning this, is because current popular IDE's lack
>>>> the usability that Netbeans has. There is a LOT of features that are very
>>>> thoughtfully crafted, and has left me wishing it was there in other IDE's
>>>> too. Problems with other IDE's:
>>>>
>>>>- Intellij Idea: Too heavy on resources. Can't run it on my 2GB
>>>>RAM, Celeron laptop.
>>>>- VS Code: The various view panels are inflexible in position and
>>>>simple tasks that should have been easily runnable, are complex in
>>>>accessibility and usage. Julia's plugin for VS Code makes it extremely 
>>>> slow
>>>>to run Julia programs.
>>>>- Spyder: Poor support for refactoring.
>>>>- Sublime text: Unbelievably un-intuitive IDE. Need to Google
>>>>search for how to do anything in it.
>>>>- Atom: Is already being sunsetted.
>>>>- Eclipse and LiClipse: Is kind of ok, but not as good as Netbeans.
>>>>
>>>> It's not just me. When using Java, many of my juniors were also
>>>> enthusiastically vocal in their preference for Netbeans. You've built a
>>>> great IDE. If Netbeans could be streamlined to be lightweight, bug-free and
>>>> if support for languages like Python, Julia, R and C++ is added/improved,
>>>> and if Netbeans could be marketed more, it'd be a great help to the
>>>> software community.
>>>>
>>>> --
>>>> Regards,
>>>> Navin
>>>>
>>>>
>>>>


Re: Possibility of Netbeans supporting more languages

2022-09-20 Thread Amn Ojee Uw
Well, isn't that the job of the Apache Netbeans.
The features requests is what users do.
If I have a request and Netbeans wants to include any of us in that teem,
one could help. I love the suggestion of the OP, and respect the suggestion
being offered. However, accepting that suggestion would require too much
effort for a single developer; not only time wise, but also mental and
physical, just to mention some. This kind of endeavours are better suited
for a stablish company like Apache.
I'm offering my help, in case one of the developers need coffee or
something from the kitchen :), 7 to 10 hour a week.
I truly hope Apache is not just reading this emails,  but also giving them
the cerebral value they deserve.


On Tue., Sep. 20, 2022, 3:37 a.m. László Kishalmi, <
laszlo.kisha...@gmail.com> wrote:

> Well, pick a language and start writing the support for that. It's that
> simple.
>
> On Tue, Sep 20, 2022, 00:22 N  wrote:
>
>> Hello,
>>
>> I was an ardent user of Netbeans from 2009 to around 2016, while using
>> Java (and for a short while when using C++ and Python). I've even written
>> about it
>> ,
>> and linked to James Gosling's support for Netbeans.
>> The reason for mentioning this, is because current popular IDE's lack the
>> usability that Netbeans has. There is a LOT of features that are very
>> thoughtfully crafted, and has left me wishing it was there in other IDE's
>> too. Problems with other IDE's:
>>
>>- Intellij Idea: Too heavy on resources. Can't run it on my 2GB RAM,
>>Celeron laptop.
>>- VS Code: The various view panels are inflexible in position and
>>simple tasks that should have been easily runnable, are complex in
>>accessibility and usage. Julia's plugin for VS Code makes it extremely 
>> slow
>>to run Julia programs.
>>- Spyder: Poor support for refactoring.
>>- Sublime text: Unbelievably un-intuitive IDE. Need to Google search
>>for how to do anything in it.
>>- Atom: Is already being sunsetted.
>>- Eclipse and LiClipse: Is kind of ok, but not as good as Netbeans.
>>
>> It's not just me. When using Java, many of my juniors were also
>> enthusiastically vocal in their preference for Netbeans. You've built a
>> great IDE. If Netbeans could be streamlined to be lightweight, bug-free and
>> if support for languages like Python, Julia, R and C++ is added/improved,
>> and if Netbeans could be marketed more, it'd be a great help to the
>> software community.
>>
>> --
>> Regards,
>> Navin
>>
>>
>>


Re: NB 15 no linux installer anymore?

2022-09-14 Thread Amn Ojee Uw
Humm, I followed the link you have posted in your message, read the
information in the web page and have found it not entirely true. C++ tools,
don't know much about that. Could you please add a link to a tutorial of
how to create a C++ program in netbeans. Thanks in advance.

On Wed., Sep. 14, 2022, 12:10 a.m. Mark A. Flacy,
 wrote:

> Snap requires systemd to work.  Many, but not all, linux distributions use
> systemd.
>
> If your distro doesn't use systemd, don't expect snap to work for you.
>
> --
> Mark A. Flacy
> mfl...@verizon.net
>
> On 2022 M09 13, Tue 21:40:38 CDT László Kishalmi wrote:
> > For the best Linux experience check out: https://snapcraft.io/netbeans
> > It adds an application icon. The best thing is that NetBeans gets updated
> > automatically when a new version is released. That happens seamlessly
> > without the need of running the import option. It also has the option to
> go
> > back to the previous version if you do not like what we put in the most
> > recent one.
> >
> > On Tue, Sep 13, 2022 at 7:52 AM PHP-Backoffice 
> >
> > wrote:
> > > Hi,
> > >
> > > is it right that there is no installer for linux platform anymore?
> > >
> > > --
> > > Mit freundlichem Gruß
> > > aus dem PHP-Backoffice in Franken
> > >
> > > Ortwin Pinke
>
>
>
>
>
> -
> To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org
> For additional commands, e-mail: users-h...@netbeans.apache.org
>
> For further information about the NetBeans mailing lists, visit:
> https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
>
>


Re: Recompile with -Xlint:unchecked

2022-04-15 Thread Amn Ojee Uw

Amazing!!
Thanks sooo much.

On 2022-04-15 3:45 p.m., Sean Carrick wrote:

Project Properties...Compiling tab...Additional Compiler Options:

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
resolve it, this is the warning:
*/Note: C:\Users\myApp.java uses unchecked or unsafe operations./**/
/**/Note: Recompile with -Xlint:unchecked for details/*

If you know how to edit parameters in NetBeans, so that I can
recompile with -Xlint:unchecked, please drop me a note.

Thanks in advance.

-- 
*ArbolOne* Using Fire Fox and Thunderbird. Developing for Android

using Java, C/C++, HTM/CSS and SQLite as our platform has been
exciting and most rewarding. [ Ñ ]


<http://www.avg.com/email-signature?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=emailclient>
Virus-free. www.avg.com

<http://www.avg.com/email-signature?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=emailclient>


<#m_-3296207469490902655_DAB4FAD8-2DD7-40BB-A1B8-4E2AA1F9FDF2>


--
*ArbolOne* Using Fire Fox and Thunderbird. Developing for Android using 
Java, C/C++, HTM/CSS and SQLite as our platform has been exciting and 
most rewarding. [ Ñ ]


--
This email has been checked for viruses by AVG.
https://www.avg.com


Recompile with -Xlint:unchecked

2022-04-15 Thread Amn Ojee Uw
I am getting this working and don't know NetBeans enough to resolve it, 
this is the warning:

*/Note: C:\Users\myApp.java uses unchecked or unsafe operations./**/
/**/Note: Recompile with -Xlint:unchecked for details/*

If you know how to edit parameters in NetBeans, so that I can recompile 
with -Xlint:unchecked, please drop me a note.


Thanks in advance.

--
*ArbolOne* Using Fire Fox and Thunderbird. Developing for Android using 
Java, C/C++, HTM/CSS and SQLite as our platform has been exciting and 
most rewarding. [ Ñ ]


--
This email has been checked for viruses by AVG.
https://www.avg.com


Re: Vote of thanks - Netbeans 13

2022-03-08 Thread Amn Ojee Uw

Me too!

On 3/7/22 12:52 PM, Pieter van den Hombergh wrote:

Excellent idea. I second that.
Pieter van den Hombergh

On Mon, Mar 7, 2022, 05:17 Jonathan Bergh  
wrote:


Just a vote of thanks to all those involved in the release of the
latest Netbeans - it's much appreciated.


Re: [ANNOUNCE] Apache NetBeans 13 released

2022-03-06 Thread Amn Ojee Uw
Yes! Thank you, now it's back to normal. I can take it from here now, I 
hope!

Have a fantastic weekend

On 3/6/22 5:14 AM, Michael Bien wrote:

On 05.03.22 18:05, Amn Ojee Uw wrote:

Yes, I'll follow your advice.

Having stated that, how do I stop/remove the current settings?


Thank you.

On 3/5/22 8:26 AM, Geertjan Wielenga wrote:


On 3/5/22 5:09 AM, Michael Bien wrote:

your config should be in
~/.netbeans/13

rename that folder and start NetBeans to try with the defaults.


if you would read the replies carefully you would already know.

you can find the path to the settings folder in the Help -> About 
window, in case you are not using the default path for whatever reason.


-mbien



-
To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org
For additional commands, e-mail: users-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



Re: [ANNOUNCE] Apache NetBeans 13 released

2022-03-05 Thread Amn Ojee Uw

Yes, I'll follow your advice.

Having stated that, how do I stop/remove the current settings?


Thank you.

On 3/5/22 8:26 AM, Geertjan Wielenga wrote:

You're going to need to stop uninstalling and reinstalling, it doesn't
make any difference, it will not solve your problem.

Whenever you're starting up NetBeans, you're importing the settings
you used to have and so you end up having NetBeans look like it used
to do.

Stop importing the settings or remove the settings, as Michael Bien
advised above.

Gj

On Sat, Mar 5, 2022 at 1:49 PM Amn Ojee Uw  wrote:

Sorry, I'll try to elaborate a bit more.
NB13 aside from creating ~/netbeans-13, it also creates a ~/.nbi file.
After uninstalling NB13, using '~/netbeans-13/uninstall.sh', I also deleted the 
~/.nbi directory.
After that, I reinstalled NB13 using 'Apache-NetBeans-13-bin-linux-x64.sh', but 
its look and feel is the same as before.
Note: when running the 'Apache-NetBeans-13-bin-linux-x64.sh' I get a message that reads : 
Gtk-Message : : Failed to load module "canberra-gtk-module".
I did not have this problem under NB12.x, so, I think I am missing something 
when installing NB13, but what could it be?
I believe that removing all files related to NB might solve the problem, what 
files should I remove?

TIA

On 3/5/22 7:12 AM, Geertjan Wielenga wrote:

"but there are some setting files"

To help you, you'll need to be clearer about what you mean here.

And uninstalling NetBeans and then reinstalling it and then importing
your settings again will give you the same results as before.

Gj

On Sat, Mar 5, 2022 at 1:07 PM Amn Ojee Uw  wrote:

I followed your advice, but to no avail. I thought that uninstalling NB13 would 
solve the problem, but there are some setting files after running 
~/netbeans-13/uninstall.sh.
So, my question is, after running '~/netbeans-13/uninstall.sh', what other 
files should I remove? Better yet, is there a method to **completely remove 
NB13?

On 3/5/22 5:09 AM, Michael Bien wrote:

your config should be in
~/.netbeans/13

rename that folder and start NetBeans to try with the defaults.

I believe swing does also support scaling, I never tried it though, maybe 
someone else can help - it might require a flag to be set.

fonts, sizes etc can be also changed in the options if everything else fails.

-mbien

On 05.03.22 10:42, Geertjan Wielenga wrote:

Those are the settings you imported, that’s not how NetBeans looks by default.

Gj

On Sat, 5 Mar 2022 at 10:41, Amn Ojee Uw  wrote:

I have just installed NB13, in my Debian 11.
The way it displays is a bit difficult to read, please see attached file.

Is this the way it suppose to be displayed?

TIA


On 3/4/22 12:07 PM, Geertjan Wielenga wrote:

Hi all,

The Apache NetBeans team is pleased to announce that Apache NetBeans 13 was 
released today, March 4, 2022.

Apache NetBeans is a full IDE for Java SE, Java EE, PHP, JavaScript, HTML5 and 
more, including some support for Groovy and C/C++.

You should notice the startup experience being simpler with nb-javac being 
bundled, you should notice the look and feel being different and more modern, 
and there are partial updates for Maven, Gradle, and PHP:

New & noteworthy features of the 13 release:

https://netbeans.apache.org/download/nb13/index.html

Downloads :

https://netbeans.apache.org/download/nb13/nb13.html

See our release schedule :

https://cwiki.apache.org/confluence/display/NETBEANS/Release+Schedule

Feel free to share the good news!

Thanks everyone, and best wishes,

Neil, Eric, Geertjan
on behalf of Apache NetBeans PMC


-
To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org
For additional commands, e-mail: users-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



-
To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org
For additional commands, e-mail: users-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



Re: [ANNOUNCE] Apache NetBeans 13 released

2022-03-05 Thread Amn Ojee Uw

Sorry, I'll try to elaborate a bit more.
NB13 aside from creating ~/netbeans-13, it also creates a ~/.nbi file.
After uninstalling NB13, using '~/netbeans-13/uninstall.sh', I also 
deleted the ~/.nbi directory.
After that, I reinstalled NB13 using 
'Apache-NetBeans-13-bin-linux-x64.sh', but its look and feel is the same 
as before.
Note: when running the '*Apache-NetBeans-13-bin-linux-x64.sh*' I get a 
message that reads : Gtk-Message : : Failed to load 
module "canberra-gtk-module".
I did not have this problem under NB12.x, so, I think I am missing 
something when installing NB13, but what could it be?
I believe that removing all files related to NB might solve the problem, 
what files should I remove?


TIA

On 3/5/22 7:12 AM, Geertjan Wielenga wrote:

"but there are some setting files"

To help you, you'll need to be clearer about what you mean here.

And uninstalling NetBeans and then reinstalling it and then importing
your settings again will give you the same results as before.

Gj

On Sat, Mar 5, 2022 at 1:07 PM Amn Ojee Uw  wrote:

I followed your advice, but to no avail. I thought that uninstalling NB13 would 
solve the problem, but there are some setting files after running 
~/netbeans-13/uninstall.sh.
So, my question is, after running '~/netbeans-13/uninstall.sh', what other 
files should I remove? Better yet, is there a method to **completely remove 
NB13?

On 3/5/22 5:09 AM, Michael Bien wrote:

your config should be in
~/.netbeans/13

rename that folder and start NetBeans to try with the defaults.

I believe swing does also support scaling, I never tried it though, maybe 
someone else can help - it might require a flag to be set.

fonts, sizes etc can be also changed in the options if everything else fails.

-mbien

On 05.03.22 10:42, Geertjan Wielenga wrote:

Those are the settings you imported, that’s not how NetBeans looks by default.

Gj

On Sat, 5 Mar 2022 at 10:41, Amn Ojee Uw  wrote:

I have just installed NB13, in my Debian 11.
The way it displays is a bit difficult to read, please see attached file.

Is this the way it suppose to be displayed?

TIA


On 3/4/22 12:07 PM, Geertjan Wielenga wrote:

Hi all,

The Apache NetBeans team is pleased to announce that Apache NetBeans 13 was 
released today, March 4, 2022.

Apache NetBeans is a full IDE for Java SE, Java EE, PHP, JavaScript, HTML5 and 
more, including some support for Groovy and C/C++.

You should notice the startup experience being simpler with nb-javac being 
bundled, you should notice the look and feel being different and more modern, 
and there are partial updates for Maven, Gradle, and PHP:

New & noteworthy features of the 13 release:

https://netbeans.apache.org/download/nb13/index.html

Downloads :

https://netbeans.apache.org/download/nb13/nb13.html

See our release schedule :

https://cwiki.apache.org/confluence/display/NETBEANS/Release+Schedule

Feel free to share the good news!

Thanks everyone, and best wishes,

Neil, Eric, Geertjan
on behalf of Apache NetBeans PMC


-
To unsubscribe, e-mail:users-unsubscr...@netbeans.apache.org
For additional commands, e-mail:users-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists


Re: [ANNOUNCE] Apache NetBeans 13 released

2022-03-05 Thread Amn Ojee Uw
I followed your advice, but to no avail. I thought that uninstalling 
NB13 would solve the problem, but there are some setting files after 
running ~/netbeans-13/uninstall.sh.
So, my question is, after running '~/netbeans-13/uninstall.sh', what 
other files should I remove? Better yet, is there a method to 
**completely remove NB13?


On 3/5/22 5:09 AM, Michael Bien wrote:

your config should be in
~/.netbeans/13

rename that folder and start NetBeans to try with the defaults.

I believe swing does also support scaling, I never tried it though, 
maybe someone else can help - it might require a flag to be set.


fonts, sizes etc can be also changed in the options if everything else 
fails.


-mbien

On 05.03.22 10:42, Geertjan Wielenga wrote:
Those are the settings you imported, that’s not how NetBeans looks by 
default.


Gj

On Sat, 5 Mar 2022 at 10:41, Amn Ojee Uw  wrote:

I have just installed NB13, in my Debian 11.
The way it displays is a bit difficult to read, please see
attached file.

Is this the way it suppose to be displayed?

TIA


On 3/4/22 12:07 PM, Geertjan Wielenga wrote:

Hi all,

TheApacheNetBeansteam is pleased to announce thatApacheNetBeans
13wasreleasedtoday, March 4, 2022.

ApacheNetBeansis a full IDE for Java SE, Java EE, PHP,
JavaScript, HTML5 and more, including some support for Groovy
and C/C++.

You should notice the startup experience being simpler with
nb-javac being bundled, you should notice the look and feel
being different and more modern, and there are partial updates
for Maven, Gradle, and PHP:

New & noteworthy features of the13release:

https://netbeans.apache.org/download/nb13/index.html

Downloads :

https://netbeans.apache.org/download/nb13/nb13.html

See our release schedule :

https://cwiki.apache.org/confluence/display/NETBEANS/Release+Schedule

Feel free to share the good news!

Thanks everyone, and best wishes,

Neil, Eric, Geertjan
on behalf ofApacheNetBeansPMC


-
To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org
For additional commands, e-mail: users-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



NB & Eclipse about jar files

2022-03-04 Thread Amn Ojee Uw
I have recently have done a major shift as a developer, I switch from MS 
to Debian 11 and as they say "New year, new life". So, I've also changed 
my developing platform to NetBeans 12.x from Eclipse. I have realized 
that the jar files produced by Eclipse are not desirable by  NB 12.x.
Is this the norm? Should I always assume that  Eclipse produced jar 
files will not run on NetBeans?


As a personal note, let me say that this issue must not exist; "Write 
once, run anywhere"?


Perhaps, someone here could point out a document on the net that 
addresses this issue.



Thanks in advance.


Re: nb tutorials

2022-02-21 Thread Amn Ojee Uw

Thanks!
I'll look into it.

On 2/21/22 1:41 AM, Geertjan Wielenga wrote:

It depends on what you need to learn.

https://netbeans.apache.org/help/index.html

They're found above.

Gj

On Mon, Feb 21, 2022 at 6:50 AM Amn Ojee Uw  wrote:

Are there any NetBeans 12.x tutorials that you can recommend?

Thanks in advance.


Debian NB - setting up tomcat

2022-02-20 Thread Amn Ojee Uw
Tomcat is installed in '/opt/tomcat' and when trying to add tomcat as a 
server, well, NB has not permission to access that directory.

Can anyone help?
I am using NB-latest in my Debian box.


nb tutorials

2022-02-20 Thread Amn Ojee Uw

Are there any NetBeans 12.x tutorials that you can recommend?

Thanks in advance.


Re: Runnable JAR files

2020-02-20 Thread Amn Ojee Uw
Thanks! I'll do so.

On Thu, Feb 20, 2020, 9:32 AM Neil C Smith,  wrote:

>
>
> On Thu, 20 Feb 2020, 14:24 Amn Ojee Uw,  wrote:
>
>> How come the latest NB runs OpenJFX applications, but I cannot not run
>> the jar file it creates?
>> C:\java -jar myApp.jar
>>
>
> Welcome to the fun of OpenJFX! ;-) You probably want to read through the
> section on Runtime Images at https://openjfx.io/openjfx-docs/
>
> Best wishes,
>
> Neil
>
>>


Runnable JAR files

2020-02-20 Thread Amn Ojee Uw
How come the latest NB runs OpenJFX applications, but I cannot not run the
jar file it creates?
C:\java -jar myApp.jar