Share gui application development using vb.net practical no 1,

kimthong238

New member
#GUI #Application #development #vb.net #Visual BASIC .NET ### Phát triển ứng dụng GUI bằng VB.NET Thực tế số 1

**Giới thiệu**

Trong thực tế này, chúng tôi sẽ học cách tạo một ứng dụng GUI đơn giản bằng VB.NET.Chúng tôi sẽ tạo một ứng dụng Windows Forms cho phép người dùng nhập tên và tuổi của họ.Ứng dụng sau đó sẽ hiển thị tên và tuổi của người dùng trong hộp thông báo.

** Bước 1: Tạo một dự án mới **

Để tạo một dự án mới, hãy mở Visual Studio và chọn tệp **> mới> Dự án **.Trong hộp thoại ** New Project **, chọn ** Visual Basic> Windows Forms Ứng dụng ** và nhấp vào ** OK **.

** Bước 2: Thêm một biểu mẫu vào dự án **

Một hình thức mới sẽ được thêm vào dự án.Biểu mẫu là cửa sổ chính của ứng dụng.Bấm đúp vào biểu mẫu để mở Trình thiết kế ** mẫu **.

** Bước 3: Thêm điều khiển vào biểu mẫu **

Chúng tôi cần thêm một số điều khiển vào biểu mẫu để người dùng có thể nhập tên và tuổi của họ.Để thực hiện việc này, kéo và thả các điều khiển sau từ hộp công cụ ** ** xuống biểu mẫu:

*A ** Nhãn ** Điều khiển để hiển thị văn bản "Nhập tên của bạn:"
*A ** Hộp văn bản ** Điều khiển cho người dùng nhập tên của họ
*A ** Nhãn ** Điều khiển để hiển thị văn bản "Nhập tuổi của bạn:"
*A ** Hộp văn bản ** Điều khiển cho người dùng vào tuổi của họ
*Nút ** ** Điều khiển để gửi thông tin của người dùng

** Bước 4: Viết mã **

Bây giờ chúng tôi đã thêm các điều khiển vào biểu mẫu, chúng tôi cần viết mã sẽ xử lý đầu vào của người dùng.Để thực hiện việc này, nhấp đúp vào nút ** ** Điều khiển để mở bộ chỉnh sửa mã ** **.

Trong Trình chỉnh sửa mã ** **, thêm mã sau:

`` `
Nút phụ riêng1_click (người gửi dưới dạng đối tượng, e là EventArgs) Nút tay cầm1.Click

'Nhận tên và tuổi của người dùng từ các hộp văn bản.
Tên diap là chuỗi = textbox1.text
Độ tuổi mờ như integer = integer.parse (textbox2.text)

'Hiển thị thông tin của người dùng trong hộp thông báo.
MessageBox.Show ("Tên của bạn là" & Tên & "và bạn là" & Age & "tuổi.")

Kết thúc phụ
`` `

** Bước 5: Chạy ứng dụng **

Để chạy ứng dụng, nhấn ** F5 **.Ứng dụng sẽ được biên soạn và ra mắt.Người dùng sẽ có thể nhập tên và tuổi của họ, sau đó nhấp vào nút ** Gửi ** để hiển thị thông tin của họ trong hộp thông báo.

**Phần kết luận**

Trong thực tế này, chúng tôi đã học cách tạo một ứng dụng GUI đơn giản bằng VB.NET.Chúng tôi đã tạo một ứng dụng Windows Forms cho phép người dùng nhập tên và tuổi của họ.Ứng dụng sau đó hiển thị tên và tuổi của người dùng trong hộp thông báo.
=======================================
#gui #Application #development #vb.net #Visual basic .net ### GUI Application Development using VB.NET Practical No. 1

**Introduction**

In this practical, we will learn how to create a simple GUI application using VB.NET. We will create a Windows Forms application that allows the user to enter their name and age. The application will then display the user's name and age in a message box.

**Step 1: Create a New Project**

To create a new project, open Visual Studio and select **File > New > Project**. In the **New Project** dialog box, select **Visual Basic > Windows Forms Application** and click **OK**.

**Step 2: Add a Form to the Project**

A new form will be added to the project. The form is the main window of the application. Double-click the form to open the **Form Designer**.

**Step 3: Add Controls to the Form**

We need to add some controls to the form so that the user can enter their name and age. To do this, drag and drop the following controls from the **Toolbox** onto the form:

* A **Label** control to display the text "Enter your name:"
* A **TextBox** control for the user to enter their name
* A **Label** control to display the text "Enter your age:"
* A **TextBox** control for the user to enter their age
* A **Button** control to submit the user's information

**Step 4: Write the Code**

Now that we have added the controls to the form, we need to write the code that will handle the user input. To do this, double-click the **Button** control to open the **Code Editor**.

In the **Code Editor**, add the following code:

```
Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click

' Get the user's name and age from the text boxes.
Dim name As String = TextBox1.Text
Dim age As Integer = Integer.Parse(TextBox2.Text)

' Display the user's information in a message box.
MessageBox.Show("Your name is " & name & " and you are " & age & " years old.")

End Sub
```

**Step 5: Run the Application**

To run the application, press **F5**. The application will be compiled and launched. The user will be able to enter their name and age, and then click the **Submit** button to display their information in a message box.

**Conclusion**

In this practical, we learned how to create a simple GUI application using VB.NET. We created a Windows Forms application that allowed the user to enter their name and age. The application then displayed the user's name and age in a message box.
 
Join Telegram ToolsKiemTrieuDoGroup
Back
Top