Skip to content

Commit 8b8556a

Browse files
committed
Some changes
1 parent 0f2e93d commit 8b8556a

File tree

4 files changed

+13
-2
lines changed

4 files changed

+13
-2
lines changed

build/classes/app/AdminHome$7.class

0 Bytes
Binary file not shown.

build/classes/app/AdminHome.class

195 Bytes
Binary file not shown.

nbproject/private/private.xml

+10-1
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,20 @@
33
<editor-bookmarks xmlns="http://www.netbeans.org/ns/editor-bookmarks/2" lastBookmarkId="0"/>
44
<open-files xmlns="http://www.netbeans.org/ns/projectui-open-files/2">
55
<group>
6+
<file>file:/C:/Projects/Java/JavaApplication4/src/app/book/ManageBooks.java</file>
7+
<file>file:/C:/Projects/Java/JavaApplication4/src/app/issue/CollectBook.java</file>
68
<file>file:/C:/Projects/Java/JavaApplication4/src/app/Info.java</file>
79
<file>file:/C:/Projects/Java/JavaApplication4/src/app/Start.java</file>
8-
<file>file:/C:/Projects/Java/JavaApplication4/src/app/AdminHome.java</file>
910
<file>file:/C:/Projects/Java/JavaApplication4/src/app/ConnectionService.java</file>
11+
<file>file:/C:/Projects/Java/JavaApplication4/src/app/user/ManageUsers.java</file>
1012
<file>file:/C:/Projects/Java/JavaApplication4/src/app/LoginForm.java</file>
13+
<file>file:/C:/Projects/Java/JavaApplication4/src/app/book/Books.java</file>
14+
<file>file:/C:/Projects/Java/JavaApplication4/src/app/user/Users.java</file>
15+
<file>file:/C:/Projects/Java/JavaApplication4/src/app/issue/Issues.java</file>
16+
<file>file:/C:/Projects/Java/JavaApplication4/src/app/AdminHome.java</file>
17+
<file>file:/C:/Projects/Java/JavaApplication4/src/app/issue/IssueBook.java</file>
18+
<file>file:/C:/Projects/Java/JavaApplication4/src/app/user/AddNewUser.java</file>
19+
<file>file:/C:/Projects/Java/JavaApplication4/src/app/book/AddNewBooks.java</file>
1120
</group>
1221
</open-files>
1322
</project-private>

src/app/AdminHome.java

+3-1
Original file line numberDiff line numberDiff line change
@@ -159,8 +159,10 @@ private void jButton4ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRS
159159
}//GEN-LAST:event_jButton4ActionPerformed
160160

161161
private void jButton5ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jButton5ActionPerformed
162-
int confirmed = JOptionPane.showConfirmDialog(null, "Are you sure, you want to exit the program?", "Exit Program Message Box", JOptionPane.YES_NO_OPTION);
162+
int confirmed = JOptionPane.showConfirmDialog(null, "Are you sure, you want to exit the program?", "Library Management System - Exit", JOptionPane.YES_NO_OPTION);
163163
if(confirmed == JOptionPane.YES_OPTION){
164+
System.out.println("Thanks for using Library Management System.");
165+
System.out.println("Author - Shakil Alam");
164166
dispose();
165167
System.exit(0);
166168
}

0 commit comments

Comments
 (0)