Guide to Visual Programming (GUI) in VB.NET - Urgent Help Needed

In summary, There is a website called msdn.microsoft.com which has a lot of information about VB .net and other languages that are part of the Microsoft Visual Studio suite. It is a good resource for learning and has enough information to get started. It is also recommended to experiment and practice with VB as it is easy to learn once you know the basics.
  • #1
knowthing
1
0
Do anyone know a guide about visual programming (gui) in VisualBasic. Net?
It is really urgent.

Thanks in advance..
 
Technology news on Phys.org
  • #2
How urgent can it be if you haven't looked yourself?
 
  • #3
Knowthing,

Have this site
http://www.softhelp.sun.com/lib/vbasdn.pdf|do=newreply&noquote=1&p=1206170.

Verty, of course he searched but didn't find. You are always like this.

Amir Fahd.
---------------------------------------
A real fact may help vigorously some day.
 
Last edited by a moderator:
  • #5
You have right Knowthing. In your country and many others... There some restrictions about programmings.

May be Verty didn't know so.


Amir Fahd.
---------------------------------------
A real fact may help vigorously some day.
 
  • #6
knowthing said:
Do anyone know a guide about visual programming (gui) in VisualBasic. Net?
It is really urgent.

Thanks in advance..

http://msdn.microsoft.com, answers pretty much everything about VB .net and any other language which supports .net framework or is/was a part of the Microsoft Visual Studio suite.

There is sufficient information there to learn most languages/APIs from scratch. :)

Also, with something like VB it is worth experimenting, its so easy once you know a few basic things.
 

1. What is Visual Programming (GUI)?

Visual Programming (GUI) is a method of creating computer programs by using graphical elements, such as buttons, menus, and icons, to visually represent code instead of traditional text-based programming. It allows for a more user-friendly and intuitive way of designing and interacting with software applications.

2. What is VB.NET?

VB.NET is a programming language developed by Microsoft that is used to create Windows-based applications. It is an object-oriented programming language that is based on the Visual Basic (VB) programming language.

3. How do I create a GUI in VB.NET?

To create a GUI in VB.NET, you will need to use the Visual Studio integrated development environment (IDE). Within the IDE, you can use the drag-and-drop functionality to add and arrange GUI elements, such as buttons and text boxes, onto a form. You can then use VB.NET code to add functionality to these elements.

4. Can you provide an example of a simple GUI program in VB.NET?

Sure, here is a basic program that displays a message when a button is clicked:

Public Class Form1
Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
MsgBox("Hello World!")
End Sub
End Class

5. Is it necessary to have a strong understanding of programming to create a GUI in VB.NET?

While having a strong understanding of programming concepts can be helpful, it is not necessary to have a deep knowledge of programming to create a GUI in VB.NET. The drag-and-drop functionality of the IDE makes it relatively easy for beginners to design and create simple GUIs. However, a basic understanding of coding principles and syntax will be beneficial for creating more complex and functional GUIs.

Similar threads

  • Programming and Computer Science
Replies
5
Views
2K
  • Programming and Computer Science
Replies
4
Views
1K
  • Programming and Computer Science
Replies
10
Views
3K
  • Programming and Computer Science
Replies
2
Views
304
  • Programming and Computer Science
Replies
1
Views
764
  • Programming and Computer Science
Replies
6
Views
1K
  • Programming and Computer Science
Replies
17
Views
1K
  • Programming and Computer Science
Replies
1
Views
2K
  • Programming and Computer Science
Replies
2
Views
1K
  • Programming and Computer Science
Replies
3
Views
1K
Back
Top