Vb.net ide

Faisal Aziz
Faisal AzizBusiness Development Executive em InfoBeans
Visual Studio .NET IDE
 Visual Studio .NET IDE (Integrated Development Environment) is
  the Development Environment for all .NET based applications which
  comes with rich features.
 VS .NET IDE provides many options and is packed with many
  features that simplify application development by handling the
  complexities. Visual Studio .NET IDE is an enhancement to
  all previous IDE’s by Microsoft.
 Important Features
 One IDE for all .NET Projects
    Visual Studio .NET IDE provides a single environment for developing all types of .NET
     applications. Application’s range from single windows applications to complex n-tier
     applications and rich web applications.
 Option to choose from Multiple Programming Languages
    You can choose the programming language of your choice to develop applications
     based on your expertise in that language.
 IDE is Customizable
 You can customize the IDE based on your preferences. The
  customize option allows you to do this. With these settings you can
  set the IDE screen the way you want, the way the keyboard behaves
  and you can also filter the help files based on the language of your
  choice.
 Built-in Browser
 The IDE comes with a built-in browser that helps you browse the
  Internet without launching another application. You can look for
  additional resources, online help files, source codes and much more
  with this built-in browser feature.
 When we open VS .NET from Start->Programs->Microsoft Visual
  Studio .NET->Microsoft Visual Studio .NET the window that is
  displayed first is the Start Page which is shown below. The start
  Page allows us to select from the most recent projects with which
  we worked.
Vb.net ide
 The Integrated Development Environment (IDE) shown
  in the image below is what we actually work with. This
  IDE is shared by all programming languages in Visual
  Studio.
 You can view the toolbars towards the left side of the
  image along with the Solution Explorer window towards
  the right.
ToolBars




                   Sol
                   Explorer



Toolb
ox

                    Prop
                    Window
New Project Dialogue Box
 The New Project dialogue box like the one in the image
  below is used to create a new project specifying it's type
  allowing us to name the project and also specify it's
  location on the disk where it is saved.
 The default location on the hard disk where all the
  projects are saved is
  C:DocumentsandSettingsAdministratorMyDocuments
  VisualStudioProjects.
Vb.net ide
 Following are different templates under Project Types and their use.
 Windows Application: This template allows to create standard
  windows based applications.
 Class Library: Class libraries are those that provide functionality
  similar to Active X and DLL by creating classes that access other
  applications.
 Windows Control Library: This allows to create our own windows
  controls. Also called as User Controls, where you group some
  controls, add it to the toolbox and make it available to other projects.
 ASP .NET Web Application: This allows to create web-based
  applications using IIS. We can create web pages, rich web
  applications and web services.
 ASP .NET Web Service: Allows to create XML Web Services.
 Web Control Library: Allows to create User-defined controls for the
  Web. Similar to user defined windows controls but these are used
  for Web.
 Console Application: A new kind of application in Visual Studio
  .NET. They are command line based applications.
 Windows Service: These run continuously regardless of the user
  interaction. They are designed for special purpose and once written,
  will keep running and come to an end only when the system is shut
  down.
 Other: This template is to develop other kinds of applications like
  enterprise applications, database applications etc.
Solution Explorer Window
 The Solution Explorer window gives an overview of the solution we
  are working with and lists all the files in the project. An image of the
  Solution Explorer window is shown below.
Server Explorer Window
 The Server Explorer window is a great tool that provides "drag and
  drop" feature and helps us work with databases in an easy graphical
  environment. For example, if we drag and drop a database table
  onto a form, VB .NET automatically creates connection and
  command objects that are needed to access that table. The image
  below         displays       Server        Explorer        window.
Intellisense
 Intellisense is what that is responsible for the boxes that open as
  we type the code. IntelliSense provides a list of options that make
  language references easily accessible and helps us to find the
  information we need. They also complete the typing for us. The
  image below displays that.
 List members – lists the members of an object.
 Parameter info – lists the arguments of procedure calls.
 Quick info – displays info in tool tips as the mouse rests on elements
  in code.
 Complete word - completes type word.
 Automatic brace matching – adds braces when required.
Vb.net ide
Code Designer Window
 Code Designers like the image below allows us to edit and write
  code.
 This is the window that opens when we double-click on a form or
  any control.
 This is the place where we write all the code for the application.
 Notice the two drop-down list boxes at the top of the code window in
  the image below.
 The left box allows us to select the object's code we are working
  with and the right box allows us to select the part of code that we
  want to work.
 Also notice the "+" and "-" boxes in the code designer. You can use
  those boxes to display code Visual Basic .NET already created, like,
  Windows Forms Designer generated code, etc.
Vb.net ide
Properties Window
 The properties window allows us to set properties for various objects
  at design time.
 For example, if you want to change the font, font size, backcolor,
  name, text that appears on a button, textbox etc, you can do that in
  this window.
 Below is the image of properties window. You can view the
  properties window by selecting
 View->Properties Window from the main menu or by pressing F4 on
  the keyboard.
Vb.net ide
Dynamic Help Window
 The dynamic help window displays help which looks up for things
  automatically.
 For example, if you want to get help with a form, select the form and
  select Help->Dynamic Help from the main menu.
 Doing that displays all the information relating to forms. The image
  below displays that.
 You can get help relating to anything with this feature. Say, if you
  want to know more about the form, select the form and select
 Dynamic Help from the Help menu. Doing that displays information
  about the form as shown in the image below..
Vb.net ide
Command Window
 The command window in the image below is a useful window. Using
  this window we can add new item to the project, add new project
  and so on.
 You     can  view   the   command     window      by    selecting
  View->Other Windows->Command Window from the main menu.
  The command window in the image displays all possible commands
  with                                                        File.
Vb.net ide
Task List Window

 The task list window displays all the tasks that VB .NET assumes
  we still have to finish.
 You can view the task list window by selecting View->Show tasks-
  >All or View->Other Windows->Task List from the main menu.
 The image below shows that. As you can see from the image, the
  task list displayed "TextBox1 not declared", "RichTextBox1 not
  declared".
 The reason for that message is, there were no controls on the form
  and attempts where made to write code for a textbox and a
  richtextbox.
 Task list also displays syntax errors and other errors you normally
  encounter                       during                      coding.
Vb.net ide
Class View Window
 The class view window like the image below is the window that
  presents solutions and projects in terms of the classes they contain
  and the members of these classes.
 Using the class view window also helps us to find a member of a
  class that we want to work with. As you can notice from the image,
  the class view window displayed all the methods and events for the
  controls which were available on the form.
Vb.net ide
Output Window
 The output window as you can see in the image below displays the
  results of building and running applications.
Object Browser Window

 The object explorer window allows us to view all the members of an
  object at once.
 It lists all the objects in our code and gives us access to them. The
  image below displays an object explorer window.
 You can view the object explorer window by selecting View->Other
  Windows-> Object Browser from the main menu.
Vb.net ide
Toolbox Window
 The toolbox window is the window that gives us access to all
  controls, components, etc.
 As you can see from the image below, the toolbox uses tabs to
  divide it's contents into categories (Data, Components, Windows
  Forms and General).
 The Data tab displays tools for creating datasets and making data
  connections, the Windows Forms tab displays tools for adding
  controls to forms, the General tab is left empty by default, the
  Clipboard Ring tab displays recent items stored in the clipboard and
  allows us to select from them.
Vb.net ide
Component tray
 Components that are invisible at run time gets added in component
  tray. E.g – timer.
1 de 31

Recomendados

VB net lab.pdf por
VB net lab.pdfVB net lab.pdf
VB net lab.pdfProf. Dr. K. Adisesha
983 visualizações19 slides
JavaScript - Chapter 12 - Document Object Model por
  JavaScript - Chapter 12 - Document Object Model  JavaScript - Chapter 12 - Document Object Model
JavaScript - Chapter 12 - Document Object ModelWebStackAcademy
5.3K visualizações41 slides
Android Threading por
Android ThreadingAndroid Threading
Android ThreadingJussi Pohjolainen
2.2K visualizações17 slides
Android app development ppt por
Android app development pptAndroid app development ppt
Android app development pptsaitej15
11.2K visualizações28 slides
Visual Studio IDE por
Visual Studio IDEVisual Studio IDE
Visual Studio IDESayantan Sur
26.7K visualizações12 slides
Spm unit2 por
Spm unit2Spm unit2
Spm unit2sweetyammu
60.6K visualizações52 slides

Mais conteúdo relacionado

Mais procurados

Introduction to .NET Framework por
Introduction to .NET FrameworkIntroduction to .NET Framework
Introduction to .NET FrameworkRaghuveer Guthikonda
16.9K visualizações29 slides
Oops concept on c# por
Oops concept on c#Oops concept on c#
Oops concept on c#baabtra.com - No. 1 supplier of quality freshers
24.8K visualizações27 slides
Notification android por
Notification androidNotification android
Notification androidksheerod shri toshniwal
1K visualizações12 slides
Function Oriented Design por
Function Oriented DesignFunction Oriented Design
Function Oriented DesignSharath g
33K visualizações23 slides
Introduction to c# por
Introduction to c#Introduction to c#
Introduction to c#OpenSource Technologies Pvt. Ltd.
9.9K visualizações28 slides
Internet programming lecture 1 por
Internet programming lecture 1Internet programming lecture 1
Internet programming lecture 1Mohammed Hussein
16.8K visualizações37 slides

Mais procurados(20)

Introduction to .NET Framework por Raghuveer Guthikonda
Introduction to .NET FrameworkIntroduction to .NET Framework
Introduction to .NET Framework
Raghuveer Guthikonda16.9K visualizações
Function Oriented Design por Sharath g
Function Oriented DesignFunction Oriented Design
Function Oriented Design
Sharath g33K visualizações
Internet programming lecture 1 por Mohammed Hussein
Internet programming lecture 1Internet programming lecture 1
Internet programming lecture 1
Mohammed Hussein16.8K visualizações
android activity por Deepa Rani
android activityandroid activity
android activity
Deepa Rani3.2K visualizações
JSON: The Basics por Jeff Fox
JSON: The BasicsJSON: The Basics
JSON: The Basics
Jeff Fox27.6K visualizações
Web Application por Sameer Poudel
Web ApplicationWeb Application
Web Application
Sameer Poudel2.3K visualizações
C#.NET por gurchet
C#.NETC#.NET
C#.NET
gurchet 35.3K visualizações
Visual programming lecture por AqsaHayat3
Visual programming lecture Visual programming lecture
Visual programming lecture
AqsaHayat3946 visualizações
Visual Basic 6.0 por Anjan Mahanta
Visual Basic 6.0Visual Basic 6.0
Visual Basic 6.0
Anjan Mahanta15.1K visualizações
Object-oriented concepts por BG Java EE Course
Object-oriented conceptsObject-oriented concepts
Object-oriented concepts
BG Java EE Course 62.6K visualizações
Android Components por Aatul Palandurkar
Android ComponentsAndroid Components
Android Components
Aatul Palandurkar5.2K visualizações
Calculator using Java por Garvit Anand
Calculator using JavaCalculator using Java
Calculator using Java
Garvit Anand10.3K visualizações
Uml diagrams por barney92
Uml diagramsUml diagrams
Uml diagrams
barney9244.8K visualizações
Cascading style sheets (CSS-Web Technology) por Timbal Mayank
Cascading style sheets (CSS-Web Technology)Cascading style sheets (CSS-Web Technology)
Cascading style sheets (CSS-Web Technology)
Timbal Mayank611 visualizações
6.applet programming in java por Deepak Sharma
6.applet programming in java6.applet programming in java
6.applet programming in java
Deepak Sharma3.1K visualizações
GUI components in Java por kirupasuchi1996
GUI components in JavaGUI components in Java
GUI components in Java
kirupasuchi19964.2K visualizações
Graphical User Interface (Gui) por Bilal Amjad
Graphical User Interface (Gui)Graphical User Interface (Gui)
Graphical User Interface (Gui)
Bilal Amjad20K visualizações

Destaque

Apoorve - Resume por
Apoorve - ResumeApoorve - Resume
Apoorve - ResumeApoorve Aggarwal
548 visualizações3 slides
Resume por
ResumeResume
ResumeBeena Gupta
761 visualizações4 slides
Resume (2) por
Resume (2)Resume (2)
Resume (2)Debasish Panda
645 visualizações1 slide
Amit Kumar Architect with Web and Angular JS por
Amit Kumar Architect with Web and Angular JSAmit Kumar Architect with Web and Angular JS
Amit Kumar Architect with Web and Angular JSAmit Kumar
1.2K visualizações7 slides
CV of Sumant Kumar Raja por
CV of Sumant Kumar RajaCV of Sumant Kumar Raja
CV of Sumant Kumar RajaSumant Raja
16.3K visualizações19 slides
Pallavi-resume-UPDATED-2 por
Pallavi-resume-UPDATED-2Pallavi-resume-UPDATED-2
Pallavi-resume-UPDATED-2pallavi alllam
617 visualizações3 slides

Destaque(20)

Apoorve - Resume por Apoorve Aggarwal
Apoorve - ResumeApoorve - Resume
Apoorve - Resume
Apoorve Aggarwal548 visualizações
Resume por Beena Gupta
ResumeResume
Resume
Beena Gupta761 visualizações
Resume (2) por Debasish Panda
Resume (2)Resume (2)
Resume (2)
Debasish Panda645 visualizações
Amit Kumar Architect with Web and Angular JS por Amit Kumar
Amit Kumar Architect with Web and Angular JSAmit Kumar Architect with Web and Angular JS
Amit Kumar Architect with Web and Angular JS
Amit Kumar1.2K visualizações
CV of Sumant Kumar Raja por Sumant Raja
CV of Sumant Kumar RajaCV of Sumant Kumar Raja
CV of Sumant Kumar Raja
Sumant Raja16.3K visualizações
Pallavi-resume-UPDATED-2 por pallavi alllam
Pallavi-resume-UPDATED-2Pallavi-resume-UPDATED-2
Pallavi-resume-UPDATED-2
pallavi alllam617 visualizações
Rizwana-Shaikh_Angular JS Profile por Rizwana Shaikh
Rizwana-Shaikh_Angular JS ProfileRizwana-Shaikh_Angular JS Profile
Rizwana-Shaikh_Angular JS Profile
Rizwana Shaikh787 visualizações
Curriculum_Vitae por Ajay Sharma
Curriculum_VitaeCurriculum_Vitae
Curriculum_Vitae
Ajay Sharma590 visualizações
Resume por Kamran Suleman
ResumeResume
Resume
Kamran Suleman813 visualizações
Soumya Resume por Soumya Kurian
Soumya ResumeSoumya Resume
Soumya Resume
Soumya Kurian5.2K visualizações
Java Web Application Security - Denver JUG 2013 por Matt Raible
Java Web Application Security - Denver JUG 2013Java Web Application Security - Denver JUG 2013
Java Web Application Security - Denver JUG 2013
Matt Raible23.8K visualizações
JnanaPrakash por Jnana Prakash
JnanaPrakashJnanaPrakash
JnanaPrakash
Jnana Prakash814 visualizações
1 . Update Resume (in doc)- Ankit Jain por Ankit Jain
1 . Update Resume (in doc)- Ankit Jain1 . Update Resume (in doc)- Ankit Jain
1 . Update Resume (in doc)- Ankit Jain
Ankit Jain995 visualizações
Resume - Kedar Deo (Oct 2016) por Kedar Deo
Resume - Kedar Deo (Oct 2016)Resume - Kedar Deo (Oct 2016)
Resume - Kedar Deo (Oct 2016)
Kedar Deo1.2K visualizações
Shilpa Resume por SHILPA ARORA
Shilpa ResumeShilpa Resume
Shilpa Resume
SHILPA ARORA674 visualizações
Sabyasachi MBA CV por sabyasachi3450
Sabyasachi MBA CVSabyasachi MBA CV
Sabyasachi MBA CV
sabyasachi3450353 visualizações
Vb.net session 01 por Niit Care
Vb.net session 01Vb.net session 01
Vb.net session 01
Niit Care3.7K visualizações
Presentation on mini dictionary using C language por Priya Yadav
Presentation on  mini dictionary using C languagePresentation on  mini dictionary using C language
Presentation on mini dictionary using C language
Priya Yadav5.7K visualizações

Similar a Vb.net ide

Visual basic concepts por
Visual basic conceptsVisual basic concepts
Visual basic conceptsmelody77776
280 visualizações31 slides
Vb basics por
Vb basicsVb basics
Vb basicssagaroceanic11
2.1K visualizações103 slides
visual basic for the beginner por
visual basic for the beginnervisual basic for the beginner
visual basic for the beginnerSalim M
11K visualizações113 slides
Visual Programming por
Visual ProgrammingVisual Programming
Visual ProgrammingASHRAFALI592771
105 visualizações16 slides
Unit -II Introduction to visual programming.pdf por
Unit -II Introduction to visual programming.pdfUnit -II Introduction to visual programming.pdf
Unit -II Introduction to visual programming.pdfUjwala Junghare
6 visualizações25 slides
Visual studio ide componects dot net framwork por
Visual studio ide componects dot net framworkVisual studio ide componects dot net framwork
Visual studio ide componects dot net framworkDipen Parmar
256 visualizações10 slides

Similar a Vb.net ide(20)

Visual basic concepts por melody77776
Visual basic conceptsVisual basic concepts
Visual basic concepts
melody77776280 visualizações
Vb basics por sagaroceanic11
Vb basicsVb basics
Vb basics
sagaroceanic112.1K visualizações
visual basic for the beginner por Salim M
visual basic for the beginnervisual basic for the beginner
visual basic for the beginner
Salim M11K visualizações
Visual Programming por ASHRAFALI592771
Visual ProgrammingVisual Programming
Visual Programming
ASHRAFALI592771105 visualizações
Unit -II Introduction to visual programming.pdf por Ujwala Junghare
Unit -II Introduction to visual programming.pdfUnit -II Introduction to visual programming.pdf
Unit -II Introduction to visual programming.pdf
Ujwala Junghare6 visualizações
Visual studio ide componects dot net framwork por Dipen Parmar
Visual studio ide componects dot net framworkVisual studio ide componects dot net framwork
Visual studio ide componects dot net framwork
Dipen Parmar256 visualizações
VB6_INTRODUCTION.ppt por BhuvanaR13
VB6_INTRODUCTION.pptVB6_INTRODUCTION.ppt
VB6_INTRODUCTION.ppt
BhuvanaR1391 visualizações
Vb lecture por alldesign
Vb lectureVb lecture
Vb lecture
alldesign88 visualizações
Meaning Of VB por Mohit Verma
Meaning Of VBMeaning Of VB
Meaning Of VB
Mohit Verma6.2K visualizações
Visual basic 6.0 por sanket1996
Visual basic 6.0Visual basic 6.0
Visual basic 6.0
sanket199611.2K visualizações
Membangun Desktop App por Fajar Baskoro
Membangun Desktop AppMembangun Desktop App
Membangun Desktop App
Fajar Baskoro2.4K visualizações
Visual basic por mafffffe19
Visual basicVisual basic
Visual basic
mafffffe19166 visualizações
Programming basics por Senri DLN
Programming basicsProgramming basics
Programming basics
Senri DLN314 visualizações
Ch02 bronson por Bharathi N Reddy
Ch02 bronsonCh02 bronson
Ch02 bronson
Bharathi N Reddy37 visualizações
Introduction of VS2012 IDE and ASP.NET Controls por KhademulBasher
Introduction of VS2012 IDE and ASP.NET ControlsIntroduction of VS2012 IDE and ASP.NET Controls
Introduction of VS2012 IDE and ASP.NET Controls
KhademulBasher585 visualizações
Chapter 01 por Terry Yoast
Chapter 01Chapter 01
Chapter 01
Terry Yoast615 visualizações
Vb unit t 1.1 por Gayathri Cit
Vb unit t 1.1Vb unit t 1.1
Vb unit t 1.1
Gayathri Cit1.2K visualizações
Chapter 01 por Rooney Joh
Chapter 01Chapter 01
Chapter 01
Rooney Joh246 visualizações
Visual Studio 2012 Course Blackboard TIC por Mauricio Correa
Visual Studio 2012 Course Blackboard TICVisual Studio 2012 Course Blackboard TIC
Visual Studio 2012 Course Blackboard TIC
Mauricio Correa1.4K visualizações
UNIT I.pptx por BhargaviJ8
UNIT I.pptxUNIT I.pptx
UNIT I.pptx
BhargaviJ84 visualizações

Mais de Faisal Aziz

Mozilla Devroom Session por
Mozilla Devroom SessionMozilla Devroom Session
Mozilla Devroom SessionFaisal Aziz
397 visualizações14 slides
Learn mozilla l10n in 5 steps por
Learn mozilla l10n in 5 steps Learn mozilla l10n in 5 steps
Learn mozilla l10n in 5 steps Faisal Aziz
1.2K visualizações23 slides
Learn mozilla l10n in 5 steps por
Learn mozilla l10n in 5 steps Learn mozilla l10n in 5 steps
Learn mozilla l10n in 5 steps Faisal Aziz
569 visualizações23 slides
Spmcasestudy por
SpmcasestudySpmcasestudy
SpmcasestudyFaisal Aziz
394 visualizações31 slides
Lecture 2-project organization por
Lecture 2-project organizationLecture 2-project organization
Lecture 2-project organizationFaisal Aziz
344 visualizações10 slides
Modified.net overview por
Modified.net overviewModified.net overview
Modified.net overviewFaisal Aziz
454 visualizações34 slides

Mais de Faisal Aziz(17)

Mozilla Devroom Session por Faisal Aziz
Mozilla Devroom SessionMozilla Devroom Session
Mozilla Devroom Session
Faisal Aziz397 visualizações
Learn mozilla l10n in 5 steps por Faisal Aziz
Learn mozilla l10n in 5 steps Learn mozilla l10n in 5 steps
Learn mozilla l10n in 5 steps
Faisal Aziz1.2K visualizações
Learn mozilla l10n in 5 steps por Faisal Aziz
Learn mozilla l10n in 5 steps Learn mozilla l10n in 5 steps
Learn mozilla l10n in 5 steps
Faisal Aziz569 visualizações
Spmcasestudy por Faisal Aziz
SpmcasestudySpmcasestudy
Spmcasestudy
Faisal Aziz394 visualizações
Lecture 2-project organization por Faisal Aziz
Lecture 2-project organizationLecture 2-project organization
Lecture 2-project organization
Faisal Aziz344 visualizações
Modified.net overview por Faisal Aziz
Modified.net overviewModified.net overview
Modified.net overview
Faisal Aziz454 visualizações
The ecommerce-models-1208250464320375-9 por Faisal Aziz
The ecommerce-models-1208250464320375-9The ecommerce-models-1208250464320375-9
The ecommerce-models-1208250464320375-9
Faisal Aziz1.1K visualizações
Inside .net framework por Faisal Aziz
Inside .net frameworkInside .net framework
Inside .net framework
Faisal Aziz1.6K visualizações
Event+driven+programming key+features por Faisal Aziz
Event+driven+programming key+featuresEvent+driven+programming key+features
Event+driven+programming key+features
Faisal Aziz30.3K visualizações
Arrays por Faisal Aziz
ArraysArrays
Arrays
Faisal Aziz7.1K visualizações
The msg box function and the messagebox class por Faisal Aziz
The msg box function and the messagebox classThe msg box function and the messagebox class
The msg box function and the messagebox class
Faisal Aziz8.3K visualizações
Chapter 2 por Faisal Aziz
Chapter 2Chapter 2
Chapter 2
Faisal Aziz5K visualizações
Hci history por Faisal Aziz
Hci historyHci history
Hci history
Faisal Aziz4.9K visualizações
Hci chapt1 por Faisal Aziz
Hci chapt1Hci chapt1
Hci chapt1
Faisal Aziz1.5K visualizações
Business intelligence por Faisal Aziz
Business intelligenceBusiness intelligence
Business intelligence
Faisal Aziz1.1K visualizações
Rock your firefox por Faisal Aziz
Rock your firefoxRock your firefox
Rock your firefox
Faisal Aziz504 visualizações
How to use firefox like a boss por Faisal Aziz
How to use firefox like a bossHow to use firefox like a boss
How to use firefox like a boss
Faisal Aziz822 visualizações

Último

SUPPLIER SOURCING.pptx por
SUPPLIER SOURCING.pptxSUPPLIER SOURCING.pptx
SUPPLIER SOURCING.pptxangelicacueva6
20 visualizações1 slide
Design Driven Network Assurance por
Design Driven Network AssuranceDesign Driven Network Assurance
Design Driven Network AssuranceNetwork Automation Forum
19 visualizações42 slides
Business Analyst Series 2023 - Week 3 Session 5 por
Business Analyst Series 2023 -  Week 3 Session 5Business Analyst Series 2023 -  Week 3 Session 5
Business Analyst Series 2023 - Week 3 Session 5DianaGray10
345 visualizações20 slides
2024: A Travel Odyssey The Role of Generative AI in the Tourism Universe por
2024: A Travel Odyssey The Role of Generative AI in the Tourism Universe2024: A Travel Odyssey The Role of Generative AI in the Tourism Universe
2024: A Travel Odyssey The Role of Generative AI in the Tourism UniverseSimone Puorto
13 visualizações61 slides
GDG Cloud Southlake 28 Brad Taylor and Shawn Augenstein Old Problems in the N... por
GDG Cloud Southlake 28 Brad Taylor and Shawn Augenstein Old Problems in the N...GDG Cloud Southlake 28 Brad Taylor and Shawn Augenstein Old Problems in the N...
GDG Cloud Southlake 28 Brad Taylor and Shawn Augenstein Old Problems in the N...James Anderson
126 visualizações32 slides
The Forbidden VPN Secrets.pdf por
The Forbidden VPN Secrets.pdfThe Forbidden VPN Secrets.pdf
The Forbidden VPN Secrets.pdfMariam Shaba
20 visualizações72 slides

Último(20)

SUPPLIER SOURCING.pptx por angelicacueva6
SUPPLIER SOURCING.pptxSUPPLIER SOURCING.pptx
SUPPLIER SOURCING.pptx
angelicacueva620 visualizações
Business Analyst Series 2023 - Week 3 Session 5 por DianaGray10
Business Analyst Series 2023 -  Week 3 Session 5Business Analyst Series 2023 -  Week 3 Session 5
Business Analyst Series 2023 - Week 3 Session 5
DianaGray10345 visualizações
2024: A Travel Odyssey The Role of Generative AI in the Tourism Universe por Simone Puorto
2024: A Travel Odyssey The Role of Generative AI in the Tourism Universe2024: A Travel Odyssey The Role of Generative AI in the Tourism Universe
2024: A Travel Odyssey The Role of Generative AI in the Tourism Universe
Simone Puorto13 visualizações
GDG Cloud Southlake 28 Brad Taylor and Shawn Augenstein Old Problems in the N... por James Anderson
GDG Cloud Southlake 28 Brad Taylor and Shawn Augenstein Old Problems in the N...GDG Cloud Southlake 28 Brad Taylor and Shawn Augenstein Old Problems in the N...
GDG Cloud Southlake 28 Brad Taylor and Shawn Augenstein Old Problems in the N...
James Anderson126 visualizações
The Forbidden VPN Secrets.pdf por Mariam Shaba
The Forbidden VPN Secrets.pdfThe Forbidden VPN Secrets.pdf
The Forbidden VPN Secrets.pdf
Mariam Shaba20 visualizações
Automating a World-Class Technology Conference; Behind the Scenes of CiscoLive por Network Automation Forum
Automating a World-Class Technology Conference; Behind the Scenes of CiscoLiveAutomating a World-Class Technology Conference; Behind the Scenes of CiscoLive
Automating a World-Class Technology Conference; Behind the Scenes of CiscoLive
Network Automation Forum43 visualizações
Special_edition_innovator_2023.pdf por WillDavies22
Special_edition_innovator_2023.pdfSpecial_edition_innovator_2023.pdf
Special_edition_innovator_2023.pdf
WillDavies2218 visualizações
"Running students' code in isolation. The hard way", Yurii Holiuk por Fwdays
"Running students' code in isolation. The hard way", Yurii Holiuk "Running students' code in isolation. The hard way", Yurii Holiuk
"Running students' code in isolation. The hard way", Yurii Holiuk
Fwdays24 visualizações
Data Integrity for Banking and Financial Services por Precisely
Data Integrity for Banking and Financial ServicesData Integrity for Banking and Financial Services
Data Integrity for Banking and Financial Services
Precisely29 visualizações
【USB韌體設計課程】精選講義節錄-USB的列舉過程_艾鍗學院 por IttrainingIttraining
【USB韌體設計課程】精選講義節錄-USB的列舉過程_艾鍗學院【USB韌體設計課程】精選講義節錄-USB的列舉過程_艾鍗學院
【USB韌體設計課程】精選講義節錄-USB的列舉過程_艾鍗學院
IttrainingIttraining69 visualizações
SAP Automation Using Bar Code and FIORI.pdf por Virendra Rai, PMP
SAP Automation Using Bar Code and FIORI.pdfSAP Automation Using Bar Code and FIORI.pdf
SAP Automation Using Bar Code and FIORI.pdf
Virendra Rai, PMP25 visualizações
TouchLog: Finger Micro Gesture Recognition Using Photo-Reflective Sensors por sugiuralab
TouchLog: Finger Micro Gesture Recognition  Using Photo-Reflective SensorsTouchLog: Finger Micro Gesture Recognition  Using Photo-Reflective Sensors
TouchLog: Finger Micro Gesture Recognition Using Photo-Reflective Sensors
sugiuralab23 visualizações
"Node.js Development in 2024: trends and tools", Nikita Galkin por Fwdays
"Node.js Development in 2024: trends and tools", Nikita Galkin "Node.js Development in 2024: trends and tools", Nikita Galkin
"Node.js Development in 2024: trends and tools", Nikita Galkin
Fwdays17 visualizações
Ransomware is Knocking your Door_Final.pdf por Security Bootcamp
Ransomware is Knocking your Door_Final.pdfRansomware is Knocking your Door_Final.pdf
Ransomware is Knocking your Door_Final.pdf
Security Bootcamp66 visualizações
Webinar : Desperately Seeking Transformation - Part 2: Insights from leading... por The Digital Insurer
Webinar : Desperately Seeking Transformation - Part 2:  Insights from leading...Webinar : Desperately Seeking Transformation - Part 2:  Insights from leading...
Webinar : Desperately Seeking Transformation - Part 2: Insights from leading...
The Digital Insurer24 visualizações
Unit 1_Lecture 2_Physical Design of IoT.pdf por StephenTec
Unit 1_Lecture 2_Physical Design of IoT.pdfUnit 1_Lecture 2_Physical Design of IoT.pdf
Unit 1_Lecture 2_Physical Design of IoT.pdf
StephenTec15 visualizações

Vb.net ide

  • 1. Visual Studio .NET IDE  Visual Studio .NET IDE (Integrated Development Environment) is the Development Environment for all .NET based applications which comes with rich features.  VS .NET IDE provides many options and is packed with many features that simplify application development by handling the complexities. Visual Studio .NET IDE is an enhancement to all previous IDE’s by Microsoft.  Important Features  One IDE for all .NET Projects  Visual Studio .NET IDE provides a single environment for developing all types of .NET applications. Application’s range from single windows applications to complex n-tier applications and rich web applications.  Option to choose from Multiple Programming Languages  You can choose the programming language of your choice to develop applications based on your expertise in that language.
  • 2.  IDE is Customizable  You can customize the IDE based on your preferences. The customize option allows you to do this. With these settings you can set the IDE screen the way you want, the way the keyboard behaves and you can also filter the help files based on the language of your choice.  Built-in Browser  The IDE comes with a built-in browser that helps you browse the Internet without launching another application. You can look for additional resources, online help files, source codes and much more with this built-in browser feature.  When we open VS .NET from Start->Programs->Microsoft Visual Studio .NET->Microsoft Visual Studio .NET the window that is displayed first is the Start Page which is shown below. The start Page allows us to select from the most recent projects with which we worked.
  • 4.  The Integrated Development Environment (IDE) shown in the image below is what we actually work with. This IDE is shared by all programming languages in Visual Studio.  You can view the toolbars towards the left side of the image along with the Solution Explorer window towards the right.
  • 5. ToolBars Sol Explorer Toolb ox Prop Window
  • 6. New Project Dialogue Box  The New Project dialogue box like the one in the image below is used to create a new project specifying it's type allowing us to name the project and also specify it's location on the disk where it is saved.  The default location on the hard disk where all the projects are saved is C:DocumentsandSettingsAdministratorMyDocuments VisualStudioProjects.
  • 8.  Following are different templates under Project Types and their use.  Windows Application: This template allows to create standard windows based applications.  Class Library: Class libraries are those that provide functionality similar to Active X and DLL by creating classes that access other applications.  Windows Control Library: This allows to create our own windows controls. Also called as User Controls, where you group some controls, add it to the toolbox and make it available to other projects.  ASP .NET Web Application: This allows to create web-based applications using IIS. We can create web pages, rich web applications and web services.  ASP .NET Web Service: Allows to create XML Web Services.
  • 9.  Web Control Library: Allows to create User-defined controls for the Web. Similar to user defined windows controls but these are used for Web.  Console Application: A new kind of application in Visual Studio .NET. They are command line based applications.  Windows Service: These run continuously regardless of the user interaction. They are designed for special purpose and once written, will keep running and come to an end only when the system is shut down.  Other: This template is to develop other kinds of applications like enterprise applications, database applications etc.
  • 10. Solution Explorer Window  The Solution Explorer window gives an overview of the solution we are working with and lists all the files in the project. An image of the Solution Explorer window is shown below.
  • 11. Server Explorer Window  The Server Explorer window is a great tool that provides "drag and drop" feature and helps us work with databases in an easy graphical environment. For example, if we drag and drop a database table onto a form, VB .NET automatically creates connection and command objects that are needed to access that table. The image below displays Server Explorer window.
  • 12. Intellisense  Intellisense is what that is responsible for the boxes that open as we type the code. IntelliSense provides a list of options that make language references easily accessible and helps us to find the information we need. They also complete the typing for us. The image below displays that.  List members – lists the members of an object.  Parameter info – lists the arguments of procedure calls.  Quick info – displays info in tool tips as the mouse rests on elements in code.  Complete word - completes type word.  Automatic brace matching – adds braces when required.
  • 14. Code Designer Window  Code Designers like the image below allows us to edit and write code.  This is the window that opens when we double-click on a form or any control.  This is the place where we write all the code for the application.  Notice the two drop-down list boxes at the top of the code window in the image below.  The left box allows us to select the object's code we are working with and the right box allows us to select the part of code that we want to work.  Also notice the "+" and "-" boxes in the code designer. You can use those boxes to display code Visual Basic .NET already created, like, Windows Forms Designer generated code, etc.
  • 16. Properties Window  The properties window allows us to set properties for various objects at design time.  For example, if you want to change the font, font size, backcolor, name, text that appears on a button, textbox etc, you can do that in this window.  Below is the image of properties window. You can view the properties window by selecting  View->Properties Window from the main menu or by pressing F4 on the keyboard.
  • 18. Dynamic Help Window  The dynamic help window displays help which looks up for things automatically.  For example, if you want to get help with a form, select the form and select Help->Dynamic Help from the main menu.  Doing that displays all the information relating to forms. The image below displays that.  You can get help relating to anything with this feature. Say, if you want to know more about the form, select the form and select  Dynamic Help from the Help menu. Doing that displays information about the form as shown in the image below..
  • 20. Command Window  The command window in the image below is a useful window. Using this window we can add new item to the project, add new project and so on.  You can view the command window by selecting View->Other Windows->Command Window from the main menu. The command window in the image displays all possible commands with File.
  • 22. Task List Window  The task list window displays all the tasks that VB .NET assumes we still have to finish.  You can view the task list window by selecting View->Show tasks- >All or View->Other Windows->Task List from the main menu.  The image below shows that. As you can see from the image, the task list displayed "TextBox1 not declared", "RichTextBox1 not declared".  The reason for that message is, there were no controls on the form and attempts where made to write code for a textbox and a richtextbox.  Task list also displays syntax errors and other errors you normally encounter during coding.
  • 24. Class View Window  The class view window like the image below is the window that presents solutions and projects in terms of the classes they contain and the members of these classes.  Using the class view window also helps us to find a member of a class that we want to work with. As you can notice from the image, the class view window displayed all the methods and events for the controls which were available on the form.
  • 26. Output Window  The output window as you can see in the image below displays the results of building and running applications.
  • 27. Object Browser Window  The object explorer window allows us to view all the members of an object at once.  It lists all the objects in our code and gives us access to them. The image below displays an object explorer window.  You can view the object explorer window by selecting View->Other Windows-> Object Browser from the main menu.
  • 29. Toolbox Window  The toolbox window is the window that gives us access to all controls, components, etc.  As you can see from the image below, the toolbox uses tabs to divide it's contents into categories (Data, Components, Windows Forms and General).  The Data tab displays tools for creating datasets and making data connections, the Windows Forms tab displays tools for adding controls to forms, the General tab is left empty by default, the Clipboard Ring tab displays recent items stored in the clipboard and allows us to select from them.
  • 31. Component tray  Components that are invisible at run time gets added in component tray. E.g – timer.