• Skip to primary navigation
  • Skip to main content
  • Skip to primary sidebar
  • Skip to footer
projectsgeek

ProjectsGeek

Download Mini projects with Source Code, Java projects with Source Codes

  • Home
  • Java Projects
  • C++ Projects
  • VB Projects
  • PHP projects
  • .Net Projects
  • NodeJs Projects
  • Android Projects
    • Project Ideas
      • Final Year Project Ideas
      • JSP Projects
  • Assignment Codes
    • Fundamentals of Programming Language
    • Software Design Laboratory
    • Data Structure and Files Lab
    • Computer Graphics Lab
    • Object Oriented Programming Lab
    • Assembly Codes
  • School Projects
  • Forum

Download Visual Basic Projects

Design and Develop features of Paint Brush application

July 12, 2011 by ProjectsGeek 5 Comments

Paint software in visual basic is simple paint program which is capable of drawing simple figures and coloring them. It has some features like spray color , pencil , picture draw options  .

Question :

Design and Develop features of Paint Brush application.

 Dim sx, sy As Single  
 Dim px As Integer  
 Dim py As Integer  
 Dim flag As Integer  
 Private Sub spray(X As Single, Y As Single, col As ColorConstants)  
 Dim i As Integer  
 Dim tempx As Integer  
 Dim tempy As Integer  
 For i = 1 To 10 Step 1  
 tempx = Rnd * 50  
 tempy = Rnd * 50  
 fradraw.PSet (X + tempx, Y + tempy), col  
 Next i  
 End Sub  
 Private Sub Form_Activate()  
 sx = 0  
 sy = 0  
 End Sub  
 Private Sub fradraw_MouseDown(Button As Integer, Shift As Integer, X As Single, Y As Single)  
 If Button <> 0 Then  
 sx = X  
 sy = Y  
 End If  
 End Sub  
 Private Sub fradraw_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)  
 Dim col As ColorConstants  
 If Button = 1 Then  
 col = piccur(1).BackColor  
 ElseIf Button = 2 Then  
 col = piccur(0).BackColor  
 End If  
 If Button <> 0 Then  
 Select Case flag  
 Case 1  
 Call spray(X, Y, col)  
 Case 2  
 Case 3  
 fradraw.Line (sx, sy)-(X, Y), col  
 sx = X  
 sy = Y  
 Case 4  
 fradraw.Line (sx, sy)-(px, py), vbWhite  
 fradraw.Line (sx, sy)-(X, Y), col  
 px = X  
 py = Y  
 Case 5  
 fradraw.Line (sx, sy)-(px, sy), vbWhite  
 fradraw.Line (px, sy)-(px, py), vbWhite  
 fradraw.Line (px, py)-(sx, py), vbWhite  
 fradraw.Line (sx, py)-(sx, sy), vbWhite  
 fradraw.Line (sx, sy)-(X, sy), col  
 fradraw.Line (X, sy)-(X, Y), col  
 fradraw.Line (X, Y)-(sx, Y), col  
 fradraw.Line (sx, Y)-(sx, sy), col  
 px = X  
 py = Y  
 Case 6  
 Case 7  
 fradraw.Line (sx, sy)-(px, sy), vbWhite  
 fradraw.Line (px, sy)-(px, py), vbWhite  
 fradraw.Line (px, py)-(sx, py), vbWhite  
 fradraw.Line (sx, py)-(sx, sy), vbWhite  
 fradraw.Line (sx, sy)-(X, sy), col  
 fradraw.Line (X, sy)-(X, Y), col  
 fradraw.Line (X, Y)-(sx, Y), col  
 fradraw.Line (sx, Y)-(sx, sy), col  
 px = X  
 py = Y  
 Case 8  
 fradraw.Circle (Abs((sx + px) / 2), Abs((sy + py) / 2)), Abs((sx - px) / 2), vbWhite  
 fradraw.Circle (Abs((sx + X) / 2), Abs((sy + Y) / 2)), Abs((sx - X) / 2), col  
 px = X  
 py = Y  
 End Select  
 End If  
 End Sub  
 Private Sub fradraw_MouseUp(Button As Integer, Shift As Integer, X As Single, Y As Single)  
 Dim a As String  
 Select Case flag  
 Case 7  
 a = InputBox("Enter a string", "String Input")  
 fradraw.ScaleMode = vbPixels  
 fradraw.CurrentX = sx + 10  
 fradraw.CurrentY = sy + 20  
 fradraw.Print a  
 fradraw.Line (sx, sy)-(px, sy), vbWhite  
 fradraw.Line (px, sy)-(px, py), vbWhite  
 fradraw.Line (px, py)-(sx, py), vbWhite  
 fradraw.Line (sx, py)-(sx, sy), vbWhite  
 End Select  
 End Sub  
 Private Sub mnuclrimg_Click()  
 fradraw.Cls  
 End Sub  
 Private Sub mnuexit_Click()  
 End  
 End Sub  
 Private Sub piccol_MouseDown(Index As Integer, Button As Integer, Shift As Integer, X As Single, Y As Single)  
 If Button = 2 Then  
 piccur(0).BackColor = piccol(Index).BackColor  
 End If  
 If Button = 1 Then  
 piccur(1).BackColor = piccol(Index).BackColor  
 End If  
 End Sub  
 Private Sub pictool_Click(Index As Integer)  
 Select Case Index  
 Case 0  
 fradraw.MouseIcon = LoadPicture("NORMAL01.CUR")  
 flag = 0  
 Case 1  
 fradraw.MouseIcon = LoadPicture("SELECT.CUR")  
 flag = 1  
 Case 2  
 fradraw.MouseIcon = LoadPicture("NORMAL01.CUR")  
 flag = 0  
 Case 3  
 fradraw.MouseIcon = LoadPicture("PENCIL.CUR")  
 flag = 3  
 Case 4  
 fradraw.MouseIcon = LoadPicture("CROSS02.CUR")  
 flag = 4  
 Case 5  
 fradraw.MouseIcon = LoadPicture("CROSS02.CUR")  
 flag = 5  
 Case 6  
 fradraw.MouseIcon = LoadPicture("NORMAL01.CUR")  
 flag = 6  
 Case 7  
 fradraw.MouseIcon = LoadPicture("NORMAL01.CUR")  
 flag = 7  
 Case 8  
 fradraw.MouseIcon = LoadPicture("CROSS02.CUR")  
 flag = 8  
 End Select  
 End Sub  
 Private Sub pictool_MouseDown(Index As Integer, Button As Integer, Shift As Integer, X As Single, Y As Single)  
 pictool(Index).BorderStyle = 1  
 End Sub  
 Private Sub pictool_MouseUp(Index As Integer, Button As Integer, Shift As Integer, X As Single, Y As Single)  
 pictool(Index).BorderStyle = 0  
 End Sub

Project Download

Other Projects to Try:

  1. Write an Applet that crease a Working Version of Fifteen Puzzle in Java
  2. Text or Screen Editor in C++ Language
  3. Operations on matrices like addition, multiplication, saddle point, magic square ,inverse & transpose
  4. Implement Conflation Algorithm using File Handling in Java
  5. Implementation of Single Pass Algorithm for Clustering

Filed Under: Download Visual Basic Projects

Media Browser using Visual Basic

July 12, 2011 by ProjectsGeek Leave a Comment

Media Browser using Visual Basic 1

Media Browser Using Visual Basic

‘*************FRMFIL******************
Private Sub Dir1_Change()
File1.Path = Dir1.Path
End Sub

Private Sub Drive1_Change()
Dir1.Path = Drive1.Drive
End Sub

Private Sub File1_DblClick()
frmmed.Tag = File1.Path + “/” + File1.FileName
Load frmmed
frmmed.Show
Form1.Hide
End Sub

Private Sub Form_Activate()
Drive1.Drive = “c:\”
Call Drive1_Change
optmed.Value = True
File1.Pattern = “*.wma”
End Sub

Private Sub optall_Click()
optall.Value = True
File1.Pattern = “*.*”
End Sub

Private Sub optmed_Click()
optmed.Value = True
File1.Pattern = “*.wma”
End Sub

‘****************FRMMED**********************************
Private Sub Form_Activate()
wmp.URL = frmmed.Tag
End Sub

Private Sub Form_Unload(Cancel As Integer)
Form1.Show
End Sub

 

Project Download

 

 

Other Projects to Try:

  1. Creation of activex document dll using visual basic and register it.
  2. Hospital Management System Visual Basic Project
  3. Calculator using Visual Basic
  4. How to Run Visual Basic Projects
  5. Text Editor Using Visual Basic

Filed Under: Download Visual Basic Projects

Text Editor Using Visual Basic

July 12, 2011 by ProjectsGeek 6 Comments

Text Editor Using Visual Basic 2

Text Editor Using Visual Basic

Project Download

Other Projects to Try:

  1. How to Run Visual Basic Projects
  2. Billing System Project using Visual Basic
  3. Airline Reservation System Project Visual Basic
  4. Applet Text Editor
  5. Text Editor in Java Project

Filed Under: Download Visual Basic Projects Tagged With: Download Visual Basic Projects

Calculator using Visual Basic

July 12, 2011 by ProjectsGeek 8 Comments

Calculator using Visual Basic 3

Calculator using Visual Basic 4

Calculator using Visual Basic

 

 

 

Project Download

 

 

Other Projects to Try:

  1. Hospital Management System Visual Basic Project
  2. How to Run Visual Basic Projects
  3. Media Browser using Visual Basic
  4. Text Editor Using Visual Basic
  5. eBilling System in Visual Basic Project

Filed Under: Download Visual Basic Projects

Hospital Management System Visual Basic Project

June 20, 2011 by ProjectsGeek 35 Comments

Hospital Management System Visual Basic Project

Screenshots

Admin Login Image
Admin Login Page

 

 

Patient Information
Patient Information

 

 

Employee Information
Employee Information

 

 

Department Information
Department Information
Running the application
Running the application

 

Hospital Management System Visual Basic

Visual Basics is a simple object oriented programming language developed by Microsoft. This is implemented on .NET framework. Therefore it has full access to the .NET libraries. It has all the methods have their won features with each having merits and demerits which help in data processing. The topic includes their architecture representing the elements involved in it and their action is also specified.

Visual Basic 6.0 allows creating object-oriented applications. Visual Basic 6.0 profoundly concentrates on the Internet development features, Active X technology, enhanced controls, enhanced features of existing control, client/server, new language features development, data access, a few design enhancement etc.,

OBJECTIVES OF THE PROJECT

The project “Hospital Management System” is aimed to develop and maintain the day-to-day state of admission/discharge of Patients, List of Doctors (Consultants), List of medicines, Bills etc.
For more projects like this on visual basic projects please visit main page for visual basic.
They are following main objectives of the Hospital:
  • Keeping records of admission of patient.
  • Keeping patient-care as utmost priority.
  • Scheduling the appointment of Patient with Doctor (Consultant) to make it convenient for both.
  • Scheduling the services of specialized Doctor (Consultant) and emergency properly so that facilities provided by Hospital are fully utilized in effective and efficient manner.
  • Keeping records of Medicine department in a meticulously arranged order so that the treatment of Patient becomes quick and satisfactory.
  • Keeping details about the consultants, their Prescriptions and treatments, surgery reports etc.
  • Keeping the best laboratory facilities and diagnostic tools for early and clear Diagnosis of the disease and early cure and disposal of the patient.
  • Keeping explicit details about the patient’s diseases, diagnosis and management for comprehensive research.
  • Keeping the records of salary structure of the employees of Hospital by billing approach.

Download Project Code

Project Report

Project Code Download

Other Projects to Try:

  1. Hospital Management Java Project
  2. How to Run Visual Basic Projects
  3. Hospital Management System project in Visual Basic
  4. Insurance Management System Visual Basic Project
  5. Banking Management System Project in Visual Basic with Source Code

Filed Under: Download Visual Basic Projects

Insurance Management System Visual Basic Project

June 19, 2011 by ProjectsGeek 27 Comments

Insurance Management System Visual Basic Project 5
Insurance Management System Visual Basic Project 6
Insurance Management System Visual Basic Project 7
Insurance Management System Visual Basic Project 8
Insurance Management System Visual Basic Project 9

Insurance Management System Visual Basic Project(Engineering Project)

ABSTRACT

 

The Insurance management system is a complete solution for organizations, which need to manage insurance for their vehicles, equipment, buildings, and other resources. Organizes and tracks insurance vendors and the policies provided under different coverage.
We are offering a robust web based insurance solution, which has the flexibility of customizations to match the specific needs of clients for achieving their business goal of good service and revenue generation.
Insurance policy administration system consists of a mathematical notation that captures the relationship between policies and objects and the entities that manage policies for those objects.
Hence there is need for an automated system, which can efficiently manage the company, records, provides instant access and one that improves the productivity. As a result of this automated system, the activities of the company are performed with in the stipulated time and the reliable and efficient service is ensured to its users.
The insurance company needs to keep track of details of its target companies, agents, policyholders, their premium payments and the various products that are available with it. Hence it is under tremendous pressure maintaining their day-to-day activities, which is currently being done manually.
Entire records have to be updated timely, even a slight mistake could complicate things. It
is very difficult to handle bulk data since human memory is weaker than electronic counter part. It is time consuming to summarize these details to produce the reports.

Project Report

Project Download
Part 1

Part 2

Other Projects to Try:

  1. How to Run Visual Basic Projects
  2. Life Insurance Management System
  3. Hospital Management System Visual Basic Project
  4. Banking Management System Project in Visual Basic with Source Code
  5. Bus Ticketing Management System using visual Basic

Filed Under: Download Visual Basic Projects

  • « Go to Previous Page
  • Page 1
  • Interim pages omitted …
  • Page 4
  • Page 5
  • Page 6

Primary Sidebar

Tags

.Net Projects Download Android Project Ideas Android Projects Angular 2 Assembly Codes C # Projects C & C++ Projects C++ Projects Class Diagrams Computer Graphics Database Project Data Mining Projects DataScience Projects Datastructure Assignments Download Visual Basic Projects Electronics project Hadoop Projects Installation Guides Internet of Things Project IOS Projects Java Java Interview Questions Java Projects JavaScript JavaScript Projects java tutorial JSON JSP Projects Mechanical Projects Mongodb Networking Projects Node JS Projects OS Problems php Projects Placement Papers Project Ideas Python Projects seminar and presentation Struts

Search this Website


Footer

Download Java Project
Download Visual Basic Projects
Download .Net Projects
Download VB Projects
Download C++ Projects
Download NodeJs Projects
Download School Projects
Download School Projects
Ask Questions - Forum
Latest Projects Ideas
Assembly Codes
Datastructure Assignments
Computer Graphics Lab
Operating system Lab
australia-and-India-flag
  • Home
  • About me
  • Contact Form
  • Submit Your Work
  • Site Map
  • Privacy Policy