├── .gitattributes ├── .gitignore └── Library(MFC) ├── AddBookDlg.cpp ├── AddBookDlg.h ├── AddUserDlg.cpp ├── AddUserDlg.h ├── AdminDlg.cpp ├── AdminDlg.h ├── Book.cpp ├── Book.h ├── BookListDlg.cpp ├── BookListDlg.h ├── BorrowBookDlg.cpp ├── BorrowBookDlg.h ├── BorrowRecord.cpp ├── BorrowRecord.h ├── BorrowRecordDlg.cpp ├── BorrowRecordDlg.h ├── DBUtil.cpp ├── DBUtil.h ├── DeleteBookDlg.cpp ├── DeleteBookDlg.h ├── Library(MFC).aps ├── Library(MFC).cpp ├── Library(MFC).h ├── Library(MFC).rc ├── Library(MFC).vcxproj ├── Library(MFC).vcxproj.filters ├── LibraryDlg.cpp ├── LibraryDlg.h ├── Manager.cpp ├── Manager.h ├── QueryBookDlg.cpp ├── QueryBookDlg.h ├── ReBorrowBookDlg.cpp ├── ReBorrowBookDlg.h ├── ReadMe.txt ├── Releasenote.txt ├── ReturnBookDlg.cpp ├── ReturnBookDlg.h ├── StringConvert.cpp ├── StringConvert.h ├── StuDlg.cpp ├── StuDlg.h ├── Student.cpp ├── Student.h ├── TimeUtil.cpp ├── TimeUtil.h ├── User.cpp ├── User.h ├── UserListDlg.cpp ├── UserListDlg.h ├── library.sql ├── res ├── Library(MFC).ico └── LibraryMFC.rc2 ├── resource.h ├── stdafx.cpp ├── stdafx.h └── targetver.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrandoLee/LibraryMFC/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrandoLee/LibraryMFC/HEAD/.gitignore -------------------------------------------------------------------------------- /Library(MFC)/AddBookDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrandoLee/LibraryMFC/HEAD/Library(MFC)/AddBookDlg.cpp -------------------------------------------------------------------------------- /Library(MFC)/AddBookDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrandoLee/LibraryMFC/HEAD/Library(MFC)/AddBookDlg.h -------------------------------------------------------------------------------- /Library(MFC)/AddUserDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrandoLee/LibraryMFC/HEAD/Library(MFC)/AddUserDlg.cpp -------------------------------------------------------------------------------- /Library(MFC)/AddUserDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrandoLee/LibraryMFC/HEAD/Library(MFC)/AddUserDlg.h -------------------------------------------------------------------------------- /Library(MFC)/AdminDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrandoLee/LibraryMFC/HEAD/Library(MFC)/AdminDlg.cpp -------------------------------------------------------------------------------- /Library(MFC)/AdminDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrandoLee/LibraryMFC/HEAD/Library(MFC)/AdminDlg.h -------------------------------------------------------------------------------- /Library(MFC)/Book.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrandoLee/LibraryMFC/HEAD/Library(MFC)/Book.cpp -------------------------------------------------------------------------------- /Library(MFC)/Book.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrandoLee/LibraryMFC/HEAD/Library(MFC)/Book.h -------------------------------------------------------------------------------- /Library(MFC)/BookListDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrandoLee/LibraryMFC/HEAD/Library(MFC)/BookListDlg.cpp -------------------------------------------------------------------------------- /Library(MFC)/BookListDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrandoLee/LibraryMFC/HEAD/Library(MFC)/BookListDlg.h -------------------------------------------------------------------------------- /Library(MFC)/BorrowBookDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrandoLee/LibraryMFC/HEAD/Library(MFC)/BorrowBookDlg.cpp -------------------------------------------------------------------------------- /Library(MFC)/BorrowBookDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrandoLee/LibraryMFC/HEAD/Library(MFC)/BorrowBookDlg.h -------------------------------------------------------------------------------- /Library(MFC)/BorrowRecord.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrandoLee/LibraryMFC/HEAD/Library(MFC)/BorrowRecord.cpp -------------------------------------------------------------------------------- /Library(MFC)/BorrowRecord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrandoLee/LibraryMFC/HEAD/Library(MFC)/BorrowRecord.h -------------------------------------------------------------------------------- /Library(MFC)/BorrowRecordDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrandoLee/LibraryMFC/HEAD/Library(MFC)/BorrowRecordDlg.cpp -------------------------------------------------------------------------------- /Library(MFC)/BorrowRecordDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrandoLee/LibraryMFC/HEAD/Library(MFC)/BorrowRecordDlg.h -------------------------------------------------------------------------------- /Library(MFC)/DBUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrandoLee/LibraryMFC/HEAD/Library(MFC)/DBUtil.cpp -------------------------------------------------------------------------------- /Library(MFC)/DBUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrandoLee/LibraryMFC/HEAD/Library(MFC)/DBUtil.h -------------------------------------------------------------------------------- /Library(MFC)/DeleteBookDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrandoLee/LibraryMFC/HEAD/Library(MFC)/DeleteBookDlg.cpp -------------------------------------------------------------------------------- /Library(MFC)/DeleteBookDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrandoLee/LibraryMFC/HEAD/Library(MFC)/DeleteBookDlg.h -------------------------------------------------------------------------------- /Library(MFC)/Library(MFC).aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrandoLee/LibraryMFC/HEAD/Library(MFC)/Library(MFC).aps -------------------------------------------------------------------------------- /Library(MFC)/Library(MFC).cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrandoLee/LibraryMFC/HEAD/Library(MFC)/Library(MFC).cpp -------------------------------------------------------------------------------- /Library(MFC)/Library(MFC).h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrandoLee/LibraryMFC/HEAD/Library(MFC)/Library(MFC).h -------------------------------------------------------------------------------- /Library(MFC)/Library(MFC).rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrandoLee/LibraryMFC/HEAD/Library(MFC)/Library(MFC).rc -------------------------------------------------------------------------------- /Library(MFC)/Library(MFC).vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrandoLee/LibraryMFC/HEAD/Library(MFC)/Library(MFC).vcxproj -------------------------------------------------------------------------------- /Library(MFC)/Library(MFC).vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrandoLee/LibraryMFC/HEAD/Library(MFC)/Library(MFC).vcxproj.filters -------------------------------------------------------------------------------- /Library(MFC)/LibraryDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrandoLee/LibraryMFC/HEAD/Library(MFC)/LibraryDlg.cpp -------------------------------------------------------------------------------- /Library(MFC)/LibraryDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrandoLee/LibraryMFC/HEAD/Library(MFC)/LibraryDlg.h -------------------------------------------------------------------------------- /Library(MFC)/Manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrandoLee/LibraryMFC/HEAD/Library(MFC)/Manager.cpp -------------------------------------------------------------------------------- /Library(MFC)/Manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrandoLee/LibraryMFC/HEAD/Library(MFC)/Manager.h -------------------------------------------------------------------------------- /Library(MFC)/QueryBookDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrandoLee/LibraryMFC/HEAD/Library(MFC)/QueryBookDlg.cpp -------------------------------------------------------------------------------- /Library(MFC)/QueryBookDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrandoLee/LibraryMFC/HEAD/Library(MFC)/QueryBookDlg.h -------------------------------------------------------------------------------- /Library(MFC)/ReBorrowBookDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrandoLee/LibraryMFC/HEAD/Library(MFC)/ReBorrowBookDlg.cpp -------------------------------------------------------------------------------- /Library(MFC)/ReBorrowBookDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrandoLee/LibraryMFC/HEAD/Library(MFC)/ReBorrowBookDlg.h -------------------------------------------------------------------------------- /Library(MFC)/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrandoLee/LibraryMFC/HEAD/Library(MFC)/ReadMe.txt -------------------------------------------------------------------------------- /Library(MFC)/Releasenote.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrandoLee/LibraryMFC/HEAD/Library(MFC)/Releasenote.txt -------------------------------------------------------------------------------- /Library(MFC)/ReturnBookDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrandoLee/LibraryMFC/HEAD/Library(MFC)/ReturnBookDlg.cpp -------------------------------------------------------------------------------- /Library(MFC)/ReturnBookDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrandoLee/LibraryMFC/HEAD/Library(MFC)/ReturnBookDlg.h -------------------------------------------------------------------------------- /Library(MFC)/StringConvert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrandoLee/LibraryMFC/HEAD/Library(MFC)/StringConvert.cpp -------------------------------------------------------------------------------- /Library(MFC)/StringConvert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrandoLee/LibraryMFC/HEAD/Library(MFC)/StringConvert.h -------------------------------------------------------------------------------- /Library(MFC)/StuDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrandoLee/LibraryMFC/HEAD/Library(MFC)/StuDlg.cpp -------------------------------------------------------------------------------- /Library(MFC)/StuDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrandoLee/LibraryMFC/HEAD/Library(MFC)/StuDlg.h -------------------------------------------------------------------------------- /Library(MFC)/Student.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrandoLee/LibraryMFC/HEAD/Library(MFC)/Student.cpp -------------------------------------------------------------------------------- /Library(MFC)/Student.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrandoLee/LibraryMFC/HEAD/Library(MFC)/Student.h -------------------------------------------------------------------------------- /Library(MFC)/TimeUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrandoLee/LibraryMFC/HEAD/Library(MFC)/TimeUtil.cpp -------------------------------------------------------------------------------- /Library(MFC)/TimeUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrandoLee/LibraryMFC/HEAD/Library(MFC)/TimeUtil.h -------------------------------------------------------------------------------- /Library(MFC)/User.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrandoLee/LibraryMFC/HEAD/Library(MFC)/User.cpp -------------------------------------------------------------------------------- /Library(MFC)/User.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrandoLee/LibraryMFC/HEAD/Library(MFC)/User.h -------------------------------------------------------------------------------- /Library(MFC)/UserListDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrandoLee/LibraryMFC/HEAD/Library(MFC)/UserListDlg.cpp -------------------------------------------------------------------------------- /Library(MFC)/UserListDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrandoLee/LibraryMFC/HEAD/Library(MFC)/UserListDlg.h -------------------------------------------------------------------------------- /Library(MFC)/library.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrandoLee/LibraryMFC/HEAD/Library(MFC)/library.sql -------------------------------------------------------------------------------- /Library(MFC)/res/Library(MFC).ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrandoLee/LibraryMFC/HEAD/Library(MFC)/res/Library(MFC).ico -------------------------------------------------------------------------------- /Library(MFC)/res/LibraryMFC.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrandoLee/LibraryMFC/HEAD/Library(MFC)/res/LibraryMFC.rc2 -------------------------------------------------------------------------------- /Library(MFC)/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrandoLee/LibraryMFC/HEAD/Library(MFC)/resource.h -------------------------------------------------------------------------------- /Library(MFC)/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrandoLee/LibraryMFC/HEAD/Library(MFC)/stdafx.cpp -------------------------------------------------------------------------------- /Library(MFC)/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrandoLee/LibraryMFC/HEAD/Library(MFC)/stdafx.h -------------------------------------------------------------------------------- /Library(MFC)/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrandoLee/LibraryMFC/HEAD/Library(MFC)/targetver.h --------------------------------------------------------------------------------