Visual Basic.NET #1
Visual Basic.NET (VB.NET) is a multi-paradigm, high-level programming language, implemented on the .NET Framework. Microsoft launched VB.NET in 2002 as the successor to its original Visual Basic language. Although the ".NET" portion was dropped in 2005, this article uses "Visual Basic.NET" to refer to all Visual Basic languages releases since 2002, in order to distinguish between them and the classic Visual Basic. Along with Visual C#, it is one of the two main languages targeting the .NET framework. ( From Wikipedia )
We will make GUI program what is GUI ?
Integrated development environment (IDE)
Integrated development environment (IDE) is a programming environment that has been packaged as an application program, typically consisting of a code editor, a compiler, a debugger, and a graphical user interface (GUI) builder. The IDE may be a standalone application or may be included as part of one or more existing and compatible applications. in our case, Visual Studio is our IDE
We will make GUI program what is GUI ?
Graphical user interface (GUI) :
In computer science, a graphical user interface or GUI, pronounced /ˈɡuːi/ ("gooey")[1] is a type of interface that allows users to interact with electronic devices through graphical icons and visual indicators such as secondary notation, as opposed to text-based interfaces, typed command labels or text navigation. GUIs were introduced in reaction to the perceived steep learning curve of command-line interfaces (CLIs), which require commands to be typed on the keyboard. ( From Wikipedia )
Controls :
what is the Controls ?
Controls are all objects in the Project such as
- Button
- Textbox
- Label
- Combobox
- Listbox
- Radiobutton
- Checkbox
- Picturebox
- Progressbar
- Scrollbar
- etc .............................
Controls have properties that determine it's behavior such as Button Color , Name , Text ... etc
Events are what happens when an object does something. such as click in the button
Comments
Post a Comment