library management system in vb with full source code pdf
#1

Hi am Mohamed i would like to get details on library management system in vb with full source code pdf ..My friend Justin said library management system in vb with full source code pdf will be available here and now i am living at ......... and i last studied in the college/school ......... and now am doing ....i need help on ......etc
Reply
#2
Abstract

This post provides full visual basic (VB) Script source code for the Library Management System Project. Here VB code works for server side scripting validations and like be a windows based application. The main advantage of this project is to useful for college libraries, school libraries for book management system. The below added Vb code explains how Student details, Book details, Book Issue details, Admin book add and delete features, Library details. Database tables are stored in MS Access database.

[cc lang=”vb”] TabCaption(0) = “Member Details”
TabCaption(1) = “Book Details”

TabCaption(2) = “Issue Details”

Form4.Data1.RecordSource = “select * from Issue_mast”
d = InputBox(“Enter the member code to delete the record”, “Delete”)
Data3.RecordSource = “select * from issue_mast where mem_code='” + d + “‘”
MsgBox “The member has not returned the book”, vbInformation, “Library”
Data1.RecordSource = “select * from mem_mast”
r = InputBox(“Enter your member code”, “Book Return”)
Data3.RecordSource = “select * from issue_mast where mem_code='” + r + “‘”
Data3.RecordSource = “select * from issue_mast”
b = InputBox(“Enter your book code”, “Book Return”)
Data2.RecordSource = “select * from book_mast where book_code='” + b + “‘”
d = InputBox(“Enter the book code to delete the book”, “Delete”)
Data3.RecordSource = “select * from issue_mast where book_code='” + d + “‘”
MsgBox “Don’t Delete, we have issued this book”, vbInformation, “Library”
Data2.RecordSource = “select * from book_mast”
Data1.RecordSource = “select * from mem_mast”
Data2.RecordSource = “select * from Book_mast”
Data3.RecordSource = “select * from Issue_mast”
Data1.RecordSource = “select * from Mem_mast”
Data2.RecordSource = “select * from Book_mast”
Data3.RecordSource = “select * from Issue_mast”
[/cc] Library Project Web Form for Getting Book Information:

[cc lang=”vb”]Private Sub Command2_Click()
Form1.Data2.RecordSource = “select * from book_mast”
Form1.Data2.Refresh
Form3.Hide
Form1.Show
End Sub
Private Sub Text1_LostFocus()
On Error GoTo errorhandle
Data1.RecordSource = “select * from book_mast where book_code='” + Text1.Text + “‘”
Data1.Refresh
Do While Not Data1.Recordset.EOF
c = c + 1
Data1.Recordset.MoveNext
Loop
If c <> 0 Then
MsgBox “Duplicate Code”, vbExclamation, “Duplicate”
Text1.Text = ” ”
Text1.SetFocus
Else
Text2.SetFocus
End If
Exit Sub
errorhandle:
MsgBox “Error occurred!Wrong Book Code”, vbInformation, “Error”
End[/cc] Issuing Book VB web Form:
[cc lang=”vb”] Data1.RecordSource = “select * from issue_mast”

Form1.Data2.RecordSource = “select * from book_mast where book_code='” + Text3.Text + “‘”

Form1.Data3.RecordSource = “select * from issue_mast”

Form1.Data2.RecordSource = “select * from book_mast where book_name='” + List1.Text + “‘”

Data1.RecordSource = “select * from issue_mast where mem_code='” + Text1.Text + “‘”

MsgBox “Please return the book first”, vbInformation, “Book Return”

Form1.Data1.RecordSource = “select * from mem_mast where mem_code='” + Text1.Text + “‘”

Form1.Data2.RecordSource = “select * from book_mast”

MsgBox “Error occured!Wrong Member Code”, vbInformation, “Error”

MsgBox (“Please check your stock”)[/cc]
Reply

Important Note..!

If you are not satisfied with above reply ,..Please

ASK HERE

So that we will collect data for you and will made reply to the request....OR try below "QUICK REPLY" box to add a reply to this page
Popular Searches: library management system pdf with source code, library management system in vb with full source code pdf,

[-]
Quick Reply
Message
Type your reply to this message here.

Image Verification
Please enter the text contained within the image into the text box below it. This process is used to prevent automated spam bots.
Image Verification
(case insensitive)

Possibly Related Threads...
Thread Author Replies Views Last Post
  Test cases for Attendance management System 0 1,168 12-08-2023, 11:06 AM
Last Post:
  voice vased email system source code 0 3,122 20-04-2021, 07:59 AM
Last Post:
  Cricket club management system 0 914 18-04-2021, 06:01 AM
Last Post:
  ADCA full course 0 1,840 01-08-2020, 07:19 PM
Last Post:
Video tollbooth management system vb with ms access 0 1,020 14-12-2019, 03:31 PM
Last Post:
  Garment management system 0 1,258 16-02-2019, 11:31 PM
Last Post:
  Pseudocode for hotel management system 0 1,214 10-02-2019, 02:13 PM
Last Post:
  code on mobile based attendance system for project 0 1,197 14-01-2019, 12:52 PM
Last Post:
  Regarding help for code on mobile based attendance system 1 1,151 14-01-2019, 12:48 PM
Last Post:
  class 12 business studies project on marketing management pdf on mobile phones 3 3,596 20-12-2018, 12:16 AM
Last Post:

Forum Jump: