SlideShare uma empresa Scribd logo
1 de 45
Visual Basic 6 ,[object Object]
Design and develop Information Systems with the help of Visual Basic as front-end and MS Access as backend. ,[object Object]
Why Visual Basic?? Data access features allow you to create databases, front-end applications, and scalable server-side components for most popular database formats, including Microsoft SQL Server and other enterprise-level databases. ActiveX™ technologies allow you to use the functionality provided by other applications, such as Microsoft Word word processor, Microsoft Excel spreadsheet, and other Windows applications. You can even automate applications and objects created using the Professional or Enterprise editions of Visual Basic. Internet capabilities make it easy to provide access to documents and applications across the Internet or intranet from within your application, or to create Internet server applications. Your finished application is a true .exe file that uses a Visual Basic Virtual Machine that you can freely distribute.
Interpreting and Compiling The traditional application development process : writing  compiling testing code Visual Basic uses an interactive approach to development, blurring the distinction between the three steps.  Visual Basic interprets your code as you enter it, catching and highlighting most syntax or spelling errors on the fly. It's almost like having an expert watching over your shoulder as you enter your code. In addition to catching errors on the fly, Visual Basic also partially compiles the code as it is entered. When you are ready to run and test your application, there is only a brief delay to finish compiling. Compilation also possible to generate faster applications
Key Concepts windows, events and messages. Think of a window as simply a rectangular region with its own boundaries.  Explorer window  document window within your word processing program,  dialog box ,Icons, text boxes, option buttons and menu bars are all windows       OS manages all of these many windows by assigning each one a unique id number (window handle or hWnd). The system continually monitors each of these windows for signs of activity or events. Events can occur through user actions such as a mouse click or a key press, through programmatic control, or even as a result of another window's actions. Each time an event occurs, it causes a message to be sent to the operating system. The system processes the message and broadcasts it to the other windows. Each window can then take the appropriate action based on its own instructions for dealing with that particular message (for example, repainting itself when it has been uncovered by another window). Visual Basic insulates you from having to deal with all of the low-level message handling.
Event Driven Programming In traditional or "procedural" applications, the application itself controls which portions of code execute and in what sequence. Execution starts with the first line of code and follows a predefined path through the application, calling procedures as needed. In an event-driven application, the code doesn't follow a predetermined path — it executes different code sections in response to events. Events can be triggered by the user's actions, by messages from the system or other applications, or even from the application itself. The sequence of these events determines the sequence in which the code executes, thus the path through the application's code differs each time the program runs. Your code can also trigger events during execution. For example, programmatically changing the text in a text box cause the text box's Change event to occur. This would cause the code (if any) contained in the Change event to execute. If you assumed that this event would only be triggered by user interaction, you might see unexpected results. It is for this reason that it is important to understand the event-driven model and keep it in mind when designing your application.
DEMO
Visual Basic Environment Menu Bar Toolbar Project  Explorer Toolbox Form Properties Window Form Layout Window Form Designer
Controls Label Frame Combo  Box List  Box Text Box Command Button Check Box Option Button
Control Properties The most common and important object properties are :- ,[object Object]
Caption
Left
Top
Height
Width
Enabled
Visible,[object Object]
The Visual Basic Editor
DEMO
Data Types and Variables Writing Statements Math Operations Control Statements Functions Language Basics
Data Types A Data Type is a set of values ,together with a set of operations on those values having certain properties. Built in Type User Defined Types
Built in Type
Variables Variables are used to store information in Computer’s memory while programs are running.  Three Components that define a variable: The Variable’s Name The Type of information being stored The actual information itself
Naming Variable Syntax: Dim Var_name As Datatype Example: Dim X As Integer Dim S_Name As String Dim Sname As String * 25 Rules: The name must be start with a letter not number or other character. The remainder of name can contain numbers, letters and/or underscore character. Space ,Punctuation are not allowed. Name should be unique within variable scope. The name can be no longer than 255 character. No reserve words.
Constants Constants are values which remains unchanged. Ex.       Const MeterToFeet = 3.3        Public const ProgTitle = “My Application Name”        Public const ProgVersion = “3.1”
User Defined Types In addition to Built in Types we can also create User Defined Data Types as follows :- Ex. Private Type Point         x   As Integer         y   As Integer End Type USES: Private Sub Command1_Click()         Dim MyPoint As Point MyPoint.x = 3 MyPoint.y = 5 End Sub
Writing Statements
Using Assignment Statements Assignments statements are used to assign values to a variable.
Math Operations
Strings Strings can be defined as array of characters. Strings Functions Ucase and Lcase InStr and InStrRev Left and Right Mid Ltrim, Rtrim and Trim Len Chr and Asc Str ,CStr and Val StrReverse
Examples 1.  string1 =  “himansu” & “ shekhar” 	output :  himansushekhar Ucase(“Hello”) 	output: HELLO Lcase(“HeLLo”)       Output: hello Pos = InStr(“hi”, “sahoohimansu”)     //return 6 Pos = InStrRev(“a”, “Nauman”)	         //return 5    	          Left(“Hello”, 3)		        //Hel Right(“Hello”,2)		        //lo Ltrim(“    Hello”)		        //Hello Trim(“       Hello     “)		       //Hello Len(“Himansu”)	     	      //return 7 Chr(65) , Asc(‘A’)		     //return A, 65 Str(num), Val(string1) StrReverse(“Hello”)		     //olleH
Decision Making Using If Statements: Syntax: 	If  <condition> Then command Example: 	If cSal > cMaxSale Then msgbox(“Greater”) Syntax: 	If  condition Then 		……… 	Else 		……… 	End  If Example: 	If Deposit > 0 Then  		total = total + Deposit 	End If
Decision Making Using  Multiple If Statements: Syntax: 	If  condition Then 		……… ElseIf condition Then 		……… 	Else 		………..	 	End  If Example: 	If Bsal > 12000 Then  tSal = 2.5 * Bsal ElseIfBsal > 10000 Then tSal = 2* Bsal 	Else tSal = 1.8 * Bsal 	End If
Decision Making Select Case Examples Syntax: avgNum = total / n 	Select     Case    Round(avgNum) 		Case	Is  = 100 			grade = “EX” 		Case	 80 To 99 			grade  = “A” 		……… 	End	Select
Control Statements For Loop Ex: 	sum = 0 	For i = 1 To 10 		sum = sum + i 	Next i ,[object Object],Ex: 	sum = 0 i = 1 	Do 		sum = sum + i i = i + 1 	Loop While   i <= 10
Control Statements Until Loop Ex: 	sum = 0 i = 1 	Do Until  i > 10 		sum = sum + i i = i + 1 	Loop
Functions Built in Functions User Defined Functions Sub Procedures
Built in Functions These are the functions that are the provided with the Visual Basic Package. Some Examples are: Abs(num) Left(string, n) Val(Text1.Text) Combo1.AddItem Combo1.Clear Date
User Defined Functions Visual Basic allows to create user defined functions.  User defined functions that are created by the users for specific operations. Ex 1: 	Public Function Fun() 		msgBox(“Hello”) 	End Function Ex 2: 	Public Function AddNum(num1 As Integer, num2 As Integer) As Integer    		 AddNum = num1 + num2 	End Function
Procedures Procedures can be defined in either of two ways. Public procedures Private procedure These two keywords ( Public and Private ) determines which other programs or procedures have access to your procedures. Procedures are by default Private.
Procedure Examples: Sub CalRect(nWidth As Integer, nHeight As Integer, nArea As Integer, nPerimeter As 							            Integer) 	If nWidth <= 0 Or nHeight <= 0  Then 		Exit Sub 	End If nArea = nWidth * nHeight nPerimeter = 2 * ( nWidth + nHeight ) End Sub
Visual Basic forms and controls are objects which expose their own properties, methods and events. Properties can be thought of as an object's attributes, methods as its actions, and events as its responses. The common events related to several controls are as follows:- Change – The user modifies the text in a text box or combo box. Click- The user clicks an object with the primary mouse button( usually the left button). Dblclick- The user double-clicks an object with the primary mouse button. DragDrop- The user drags a control to another location. DragOver- An object is dragged over a control. GotFocus – An object receives a focus. KeyDown- A key is pressed while an object has the focus. KeyPress- A key is pressed and released while an object has the focus. KeyUp- A key is released while an object has the focus. MouseDown- A mouse button is pressed while the mouse pointer is over an object. MouseMove- A mouse cursor is moved over an object. MouseUp- A mouse button is released while the mouse pointer is over an object. Events
DEMO
This part explains what is a database and how can it be connected to our vb application. Database connectivity
Database ,[object Object]

Mais conteúdo relacionado

Mais procurados

Mais procurados (20)

Visual Basic 6.0
Visual Basic 6.0Visual Basic 6.0
Visual Basic 6.0
 
Vb introduction.
Vb introduction.Vb introduction.
Vb introduction.
 
Introduction to Visual Basic 6.0 Fundamentals
Introduction to Visual Basic 6.0 FundamentalsIntroduction to Visual Basic 6.0 Fundamentals
Introduction to Visual Basic 6.0 Fundamentals
 
Introduction to vb.net
Introduction to vb.netIntroduction to vb.net
Introduction to vb.net
 
Lecture 1 introduction to vb.net
Lecture 1   introduction to vb.netLecture 1   introduction to vb.net
Lecture 1 introduction to vb.net
 
Visual basic 6.0
Visual basic 6.0Visual basic 6.0
Visual basic 6.0
 
Microsoft visual basic 6
Microsoft visual basic 6Microsoft visual basic 6
Microsoft visual basic 6
 
VB Function and procedure
VB Function and procedureVB Function and procedure
VB Function and procedure
 
Vb6.0 Introduction
Vb6.0 IntroductionVb6.0 Introduction
Vb6.0 Introduction
 
Introduction to Visual Basic
Introduction to Visual Basic Introduction to Visual Basic
Introduction to Visual Basic
 
Visual Basic IDE Introduction
Visual Basic IDE IntroductionVisual Basic IDE Introduction
Visual Basic IDE Introduction
 
Vb 6.0 controls
Vb 6.0 controlsVb 6.0 controls
Vb 6.0 controls
 
Sdi & mdi
Sdi & mdiSdi & mdi
Sdi & mdi
 
Visual Basic menu
Visual Basic menuVisual Basic menu
Visual Basic menu
 
Procedures functions structures in VB.Net
Procedures  functions  structures in VB.NetProcedures  functions  structures in VB.Net
Procedures functions structures in VB.Net
 
Common dialog control
Common dialog controlCommon dialog control
Common dialog control
 
Visual Studio
Visual StudioVisual Studio
Visual Studio
 
Chapter 1 — Introduction to Visual Basic 2010 Programming
Chapter 1 — Introduction to Visual Basic 2010 Programming Chapter 1 — Introduction to Visual Basic 2010 Programming
Chapter 1 — Introduction to Visual Basic 2010 Programming
 
Basic controls of Visual Basic 6.0
Basic controls of Visual Basic 6.0Basic controls of Visual Basic 6.0
Basic controls of Visual Basic 6.0
 
Visual basic
Visual basicVisual basic
Visual basic
 

Semelhante a Presentation on visual basic 6 (vb6)

Semelhante a Presentation on visual basic 6 (vb6) (20)

01 Database Management (re-uploaded)
01 Database Management (re-uploaded)01 Database Management (re-uploaded)
01 Database Management (re-uploaded)
 
Ppt on visual basics
Ppt on visual basicsPpt on visual basics
Ppt on visual basics
 
Visual basic 6.0
Visual basic 6.0Visual basic 6.0
Visual basic 6.0
 
ArduinoWorkshop2.pdf
ArduinoWorkshop2.pdfArduinoWorkshop2.pdf
ArduinoWorkshop2.pdf
 
Intro To C++ - Class 14 - Midterm Review
Intro To C++ - Class 14 - Midterm ReviewIntro To C++ - Class 14 - Midterm Review
Intro To C++ - Class 14 - Midterm Review
 
Howto curses
Howto cursesHowto curses
Howto curses
 
Plug-in Architectures
Plug-in ArchitecturesPlug-in Architectures
Plug-in Architectures
 
Chapter 01
Chapter 01Chapter 01
Chapter 01
 
Introduction to Visual Basic 6.0
Introduction to Visual Basic 6.0Introduction to Visual Basic 6.0
Introduction to Visual Basic 6.0
 
Bcsl 031 solve assignment
Bcsl 031 solve assignmentBcsl 031 solve assignment
Bcsl 031 solve assignment
 
Tutorial basic of c ++lesson 1 eng ver
Tutorial basic of c ++lesson 1 eng verTutorial basic of c ++lesson 1 eng ver
Tutorial basic of c ++lesson 1 eng ver
 
Plug yourself in and your app will never be the same (1 hr edition)
Plug yourself in and your app will never be the same (1 hr edition)Plug yourself in and your app will never be the same (1 hr edition)
Plug yourself in and your app will never be the same (1 hr edition)
 
Book management system
Book management systemBook management system
Book management system
 
C++ basics
C++ basicsC++ basics
C++ basics
 
Introduction to Shiny for building web apps in R
Introduction to Shiny for building web apps in RIntroduction to Shiny for building web apps in R
Introduction to Shiny for building web apps in R
 
Ms vb
Ms vbMs vb
Ms vb
 
Vb.net and .Net Framework
Vb.net and .Net FrameworkVb.net and .Net Framework
Vb.net and .Net Framework
 
Chapter 5( programming) answer
Chapter 5( programming) answerChapter 5( programming) answer
Chapter 5( programming) answer
 
Intro to Android Programming
Intro to Android ProgrammingIntro to Android Programming
Intro to Android Programming
 
C++ for hackers
C++ for hackersC++ for hackers
C++ for hackers
 

Último

Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...gurkirankumar98700
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...apidays
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc
 
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfEnterprise Knowledge
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...Neo4j
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityPrincipled Technologies
 
Unblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesUnblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesSinan KOZAK
 
Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024The Digital Insurer
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slidespraypatel2
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Servicegiselly40
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking MenDelhi Call girls
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsEnterprise Knowledge
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking MenDelhi Call girls
 
Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Allon Mureinik
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountPuma Security, LLC
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsMaria Levchenko
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024The Digital Insurer
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptxHampshireHUG
 
Developing An App To Navigate The Roads of Brazil
Developing An App To Navigate The Roads of BrazilDeveloping An App To Navigate The Roads of Brazil
Developing An App To Navigate The Roads of BrazilV3cube
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking MenDelhi Call girls
 

Último (20)

Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
 
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivity
 
Unblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesUnblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen Frames
 
Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slides
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Service
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI Solutions
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
 
Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path Mount
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed texts
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
 
Developing An App To Navigate The Roads of Brazil
Developing An App To Navigate The Roads of BrazilDeveloping An App To Navigate The Roads of Brazil
Developing An App To Navigate The Roads of Brazil
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men
 

Presentation on visual basic 6 (vb6)

  • 1.
  • 2.
  • 3. Why Visual Basic?? Data access features allow you to create databases, front-end applications, and scalable server-side components for most popular database formats, including Microsoft SQL Server and other enterprise-level databases. ActiveX™ technologies allow you to use the functionality provided by other applications, such as Microsoft Word word processor, Microsoft Excel spreadsheet, and other Windows applications. You can even automate applications and objects created using the Professional or Enterprise editions of Visual Basic. Internet capabilities make it easy to provide access to documents and applications across the Internet or intranet from within your application, or to create Internet server applications. Your finished application is a true .exe file that uses a Visual Basic Virtual Machine that you can freely distribute.
  • 4. Interpreting and Compiling The traditional application development process : writing compiling testing code Visual Basic uses an interactive approach to development, blurring the distinction between the three steps. Visual Basic interprets your code as you enter it, catching and highlighting most syntax or spelling errors on the fly. It's almost like having an expert watching over your shoulder as you enter your code. In addition to catching errors on the fly, Visual Basic also partially compiles the code as it is entered. When you are ready to run and test your application, there is only a brief delay to finish compiling. Compilation also possible to generate faster applications
  • 5. Key Concepts windows, events and messages. Think of a window as simply a rectangular region with its own boundaries. Explorer window document window within your word processing program, dialog box ,Icons, text boxes, option buttons and menu bars are all windows OS manages all of these many windows by assigning each one a unique id number (window handle or hWnd). The system continually monitors each of these windows for signs of activity or events. Events can occur through user actions such as a mouse click or a key press, through programmatic control, or even as a result of another window's actions. Each time an event occurs, it causes a message to be sent to the operating system. The system processes the message and broadcasts it to the other windows. Each window can then take the appropriate action based on its own instructions for dealing with that particular message (for example, repainting itself when it has been uncovered by another window). Visual Basic insulates you from having to deal with all of the low-level message handling.
  • 6. Event Driven Programming In traditional or "procedural" applications, the application itself controls which portions of code execute and in what sequence. Execution starts with the first line of code and follows a predefined path through the application, calling procedures as needed. In an event-driven application, the code doesn't follow a predetermined path — it executes different code sections in response to events. Events can be triggered by the user's actions, by messages from the system or other applications, or even from the application itself. The sequence of these events determines the sequence in which the code executes, thus the path through the application's code differs each time the program runs. Your code can also trigger events during execution. For example, programmatically changing the text in a text box cause the text box's Change event to occur. This would cause the code (if any) contained in the Change event to execute. If you assumed that this event would only be triggered by user interaction, you might see unexpected results. It is for this reason that it is important to understand the event-driven model and keep it in mind when designing your application.
  • 8. Visual Basic Environment Menu Bar Toolbar Project Explorer Toolbox Form Properties Window Form Layout Window Form Designer
  • 9. Controls Label Frame Combo Box List Box Text Box Command Button Check Box Option Button
  • 10.
  • 12. Left
  • 13. Top
  • 15. Width
  • 17.
  • 19. DEMO
  • 20. Data Types and Variables Writing Statements Math Operations Control Statements Functions Language Basics
  • 21. Data Types A Data Type is a set of values ,together with a set of operations on those values having certain properties. Built in Type User Defined Types
  • 23. Variables Variables are used to store information in Computer’s memory while programs are running. Three Components that define a variable: The Variable’s Name The Type of information being stored The actual information itself
  • 24. Naming Variable Syntax: Dim Var_name As Datatype Example: Dim X As Integer Dim S_Name As String Dim Sname As String * 25 Rules: The name must be start with a letter not number or other character. The remainder of name can contain numbers, letters and/or underscore character. Space ,Punctuation are not allowed. Name should be unique within variable scope. The name can be no longer than 255 character. No reserve words.
  • 25. Constants Constants are values which remains unchanged. Ex. Const MeterToFeet = 3.3 Public const ProgTitle = “My Application Name” Public const ProgVersion = “3.1”
  • 26. User Defined Types In addition to Built in Types we can also create User Defined Data Types as follows :- Ex. Private Type Point x As Integer y As Integer End Type USES: Private Sub Command1_Click() Dim MyPoint As Point MyPoint.x = 3 MyPoint.y = 5 End Sub
  • 28. Using Assignment Statements Assignments statements are used to assign values to a variable.
  • 30. Strings Strings can be defined as array of characters. Strings Functions Ucase and Lcase InStr and InStrRev Left and Right Mid Ltrim, Rtrim and Trim Len Chr and Asc Str ,CStr and Val StrReverse
  • 31. Examples 1. string1 = “himansu” & “ shekhar” output : himansushekhar Ucase(“Hello”) output: HELLO Lcase(“HeLLo”) Output: hello Pos = InStr(“hi”, “sahoohimansu”) //return 6 Pos = InStrRev(“a”, “Nauman”) //return 5 Left(“Hello”, 3) //Hel Right(“Hello”,2) //lo Ltrim(“ Hello”) //Hello Trim(“ Hello “) //Hello Len(“Himansu”) //return 7 Chr(65) , Asc(‘A’) //return A, 65 Str(num), Val(string1) StrReverse(“Hello”) //olleH
  • 32. Decision Making Using If Statements: Syntax: If <condition> Then command Example: If cSal > cMaxSale Then msgbox(“Greater”) Syntax: If condition Then ……… Else ……… End If Example: If Deposit > 0 Then total = total + Deposit End If
  • 33. Decision Making Using Multiple If Statements: Syntax: If condition Then ……… ElseIf condition Then ……… Else ……….. End If Example: If Bsal > 12000 Then tSal = 2.5 * Bsal ElseIfBsal > 10000 Then tSal = 2* Bsal Else tSal = 1.8 * Bsal End If
  • 34. Decision Making Select Case Examples Syntax: avgNum = total / n Select Case Round(avgNum) Case Is = 100 grade = “EX” Case 80 To 99 grade = “A” ……… End Select
  • 35.
  • 36. Control Statements Until Loop Ex: sum = 0 i = 1 Do Until i > 10 sum = sum + i i = i + 1 Loop
  • 37. Functions Built in Functions User Defined Functions Sub Procedures
  • 38. Built in Functions These are the functions that are the provided with the Visual Basic Package. Some Examples are: Abs(num) Left(string, n) Val(Text1.Text) Combo1.AddItem Combo1.Clear Date
  • 39. User Defined Functions Visual Basic allows to create user defined functions. User defined functions that are created by the users for specific operations. Ex 1: Public Function Fun() msgBox(“Hello”) End Function Ex 2: Public Function AddNum(num1 As Integer, num2 As Integer) As Integer AddNum = num1 + num2 End Function
  • 40. Procedures Procedures can be defined in either of two ways. Public procedures Private procedure These two keywords ( Public and Private ) determines which other programs or procedures have access to your procedures. Procedures are by default Private.
  • 41. Procedure Examples: Sub CalRect(nWidth As Integer, nHeight As Integer, nArea As Integer, nPerimeter As Integer) If nWidth <= 0 Or nHeight <= 0 Then Exit Sub End If nArea = nWidth * nHeight nPerimeter = 2 * ( nWidth + nHeight ) End Sub
  • 42. Visual Basic forms and controls are objects which expose their own properties, methods and events. Properties can be thought of as an object's attributes, methods as its actions, and events as its responses. The common events related to several controls are as follows:- Change – The user modifies the text in a text box or combo box. Click- The user clicks an object with the primary mouse button( usually the left button). Dblclick- The user double-clicks an object with the primary mouse button. DragDrop- The user drags a control to another location. DragOver- An object is dragged over a control. GotFocus – An object receives a focus. KeyDown- A key is pressed while an object has the focus. KeyPress- A key is pressed and released while an object has the focus. KeyUp- A key is released while an object has the focus. MouseDown- A mouse button is pressed while the mouse pointer is over an object. MouseMove- A mouse cursor is moved over an object. MouseUp- A mouse button is released while the mouse pointer is over an object. Events
  • 43. DEMO
  • 44. This part explains what is a database and how can it be connected to our vb application. Database connectivity
  • 45.
  • 46. Tables(Tuples or relations) are used to represent collections of objects or events in the real world.
  • 47. A row in a table represents a record consisting of values relative to an entity by its attribute field.
  • 48. A column ,also known as field represents an attribute of the entity.
  • 49.
  • 50. ADODC The most recent method of data access that Microsoft has introduced. As compared to RDO and DAO ,ADODC provides several options to access data. To start using ADODC ,we have to add its control using the components options in the project menu.
  • 51. How to connect Create a database using MS Access. Create a ADODC control in your form. In the connection string property of the ADODC control ,select the use connection string option and click on build button. In the provider list select the Microsoft Jet OLE DB provider. In the connection tab specify the path of the existing database. In the record source tab ,in the command type list select adCmdTable. Select the table name from the list of tables now available. Press OK.
  • 53. Basic Database commands Adodc1.recordset.BOF Adodc1.recordset.EOF Adodc1.recordset.MoveFirst Adodc1.recordset.MoveLast Adodc1.recordset.MoveNext Adodc1.recordset.MovePrevious Adodc1.recordset.Update
  • 54. Thank You Presented by :- HimansuShekharSahoo Manish Sethi Narender Singh Thakur PratikBarasia