• 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

ProjectsGeek

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

Computer Network Technology

June 30, 2011 by ProjectsGeek 2 Comments

Computer Network Technology Presentations

TOPIC COVERED

Network Layer and Routing
Network layer –I :
Design issues, packet switching, connectionless and connection oriented
services, virtual circuit and datagram subnet, routing algorithms like adaptive
and non-adaptive (2 each), congestion control algorithms and prevention
policies, Load shading, jitter control, quality of service, internetworking.

Network layer –II
ARP, RARP, ICMP, IPv4, IPv6, Addressing schemes, Subnetting,
Supernetting, CIDR, Unicast/multicast protocols, MPLS, VLAN, DHCP,
Bootstrap, BOOTP

Unit III Transport Layer: 8 Hrs.
Services and service primitives, socket and socket programming, Elements of
transport protocols : Addressing, Connection establishing and releasing, Flow
control and buffering, multiplexing and crash recovery, simple transport
protocol, UDP : Introduction, header format RPC, TCP: introduction, model,
protocol, header, connection establishing and release, connection management,
transmission policy, congestion control, timer management, performance issue
(concepts like : throughput, delay, bandwidth utilization, error rate, congestion

 

OSI and TCP/IP LAYER Presentations

ARP,RARP and IP Presentations

IP PROTOCOL Presentations
SUBNET-SUPERNETING Presentations
ICMP and IPv6 Presentations
BOOTP-DHCP Presentations
ROUTER Presentations
ROUTING PROTOCOLS Presentations
CONGESTION CONTROL Presentations
TRANSPORT LAYER INTRODUCTION Presentations
UDP Presentations TCP Presentations
SOCKETS Presentations
FLOW AND ERROR CONTROL Presentations

Other Projects to Try:

  1. BE-IT Advanced Computer Networking Notes
  2. Networking Projects for Computer Science
  3. Network security projects
  4. Configuration of Static Routing Table and Routing Information Protocol (RIP) using Packet Tracer
  5. Internet E-mail System and P2P Computing-final year projects for cse

Filed Under: Networking Tutorials

Lan Chat and File Sharing Java Project

June 27, 2011 by ProjectsGeek 74 Comments

Lan Chat and File Sharing Java Project

Lan Chat and File Sharing Java Project 5
Lan Chat and File Sharing Java Project 6
Lan Chat and File Sharing Java Project 7
Lan Chat and File Sharing Java Project 8

LAN CHAT AND FILE SHARING AP Java Project

 

 

LAN chat application is one of easiest way to chat with a your friends through LAN. No internet connection is needed. The only thing which requires is server IP address and you will be able to connect to others members through LAN . It can help you to talk to your friends even you both do not have internet connection. As it is based on LAN. LAN i.e. local area network which connect different client to each other and also client to main server. So we have used the same concept here we are connecting two client or client and server with each other and by providing the IP address we can talk with each other.

On the other hand file sharing application is also implemented where a user can upload a file or download a file. We are providing the path to the directory where we have stored our file to the user who wants to download particular file.
Project Download

Other Projects to Try:

  1. Secure LAN Communicator Project
  2. Simple Chat Room System Project
  3. Online Chat Java Project
  4. Chat Server project in Java
  5. Online Chat Express project in Java

Filed Under: Java Projects Tagged With: Java Projects

  • « Go to Previous Page
  • Page 1
  • Interim pages omitted …
  • Page 116
  • Page 117
  • Page 118
  • Page 119
  • Page 120
  • Interim pages omitted …
  • Page 135
  • Go to Next Page »

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