Share My Creation BJ Notes

BJ Notes is a small program to keep notes and snippets of code about a topic.
Create Categories which are particular subjects of the overall topic.
Add Items and Data for each Category.
Search for particular words in the Items or Data areas.
Delete particular Items or whole Categories.
Editing Items and Data.
Select All, Copy and Paste are available in the Data text area.

The help.zip file should be uncompressed and placed where the data folder is.

Tested on Mac OS X Lion, Windows XP and Windows 7.

EDIT: Version 1.5
Increased Data Text Area Font Size In all Modules To 15px;
Private qualifier added To Subs In the Class Modules
Category Module - Edit function To Edit the Name of a Category
Items Module - Show current Items List For the Selected Category
In Search Module - The Category Is now displayed In RED colour when a found Item Is clicked.
BJNotes.ico File To be used For Shortcuts.

NOTE: Messages Library required when compiling code. See reply #5 below for directions.

BJ Notes Version 2 - See notes below for changes and additions
NOTE - The same Database is used.
 

Attachments

  • BJNotes1-5.zip
    18.6 KB · Views: 383
  • help.zip
    205.3 KB · Views: 525
  • BJNotesIcon.zip
    509 bytes · Views: 378
  • BJNotes2-0.zip
    20 KB · Views: 308
  • BJNotes2-50.zip
    21.4 KB · Views: 326
  • BJNotes2-60.zip
    23.5 KB · Views: 446
Last edited:

stevel05

Expert
Licensed User
Longtime User
OK, no probs thanks.
 

BPak

Active Member
Licensed User
Longtime User
Fixes have been done and BJNotes 2.0 re-uploaded.

Still have the MSGBOX as is.
 

BPak

Active Member
Licensed User
Longtime User
Have built Version 2.50 of BJNotes.

This version is the same as Version 2.0 but with AlertForm being used instead of JMessages.

Hope it will work OK on the multiple Screens.

See Post #1 for download of BJNotes 2.50
 

stevel05

Expert
Licensed User
Longtime User
Thanks BPak, I'll try it out tomorrow.
 

stevel05

Expert
Licensed User
Longtime User
Hi BPak,

Sorry things have been a bit hectic around here, I've just tested version 2.5 and it's much better on 2 monitors, much easier to use.

Thank you

One more thing, it would be useful to be able to change the category for a note. Perhaps in the Edit a record window.


Steve
 

BPak

Active Member
Licensed User
Longtime User
I have been doing the change of Category by using the Edit and copying the Note.

Then add the Note to a new Category.

Then Deleting the old Note from the old Category.

Will think on an easier way!!

Thanks Steve for all your suggestions of improving the BJNotes program.
 

BPak

Active Member
Licensed User
Longtime User
CHANGE from Version 2.50
Version 2.60 (26-03-2014)
New Menu Option For Items List In the Main window
Menu - Change Category
Displays a Change Category Form where the Selected Item Is displayed In RED
1. Select the desired Category from Category List.
2. Click the Change Button To make the change of Category For the Item

See Post #1 for download of BJNotes2-60.zip
 

joschi

Member
Licensed User
Longtime User
Hi!

I have found this Project; I get following Error by compiling:

main._process_globals (java line: 499)
java.lang.NoClassDefFoundError: javafx/scene/control/Dialog
at b4j.example.main._process_globals(main.java:499)
at b4j.example.main.initializeProcessGlobals(main.java:489)
at b4j.example.main.start(main.java:33)
at com.sun.javafx.application.LauncherImpl$5.run(LauncherImpl.java:319)
at com.sun.javafx.application.PlatformImpl$5.run(PlatformImpl.java:219)
at com.sun.javafx.application.PlatformImpl$4$1.run(PlatformImpl.java:182)
at com.sun.javafx.application.PlatformImpl$4$1.run(PlatformImpl.java:179)
at java.security.AccessController.doPrivileged(Native Method)
at com.sun.javafx.application.PlatformImpl$4.run(PlatformImpl.java:179)
at com.sun.glass.ui.InvokeLaterDispatcher$Future.run(InvokeLaterDispatcher.java:76)
at com.sun.glass.ui.win.WinApplication._runLoop(Native Method)
at com.sun.glass.ui.win.WinApplication.access$100(WinApplication.java:17)
at com.sun.glass.ui.win.WinApplication$3$1.run(WinApplication.java:67)
at java.lang.Thread.run(Thread.java:745)
Caused by: java.lang.ClassNotFoundException: javafx.scene.control.Dialog
at java.net.URLClassLoader$1.run(URLClassLoader.java:366)
at java.net.URLClassLoader$1.run(URLClassLoader.java:355)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader.findClass(URLClassLoader.java:354)
at java.lang.ClassLoader.loadClass(ClassLoader.java:425)
at java.lang.ClassLoader.loadClass(ClassLoader.java:358)
... 14 more


I hope somebody can help me.

Best Regards
 
Top