Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to use Hashtable in VB.NET

2025-02-25 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/02 Report--

This article is about how to use Hashtable in VB.NET. The editor thinks it is very practical, so share it with you as a reference and follow the editor to have a look.

Detailed explanation of concepts related to the usage of VB.NET Hashtable

1. Under VB.Net 2003, add: MyBase.KeyPreview = True to the code of the form design.

# Region Code generated by the Windows forms designer

Public Sub New ()

MyBase.New ()

Add the following sentence here to make any in the window

Only one response is performed on the keystrokes of

MyBase.KeyPreview = True

'This call is required by the Windows forms designer.

InitializeComponent ()

'in InitializeComponent ()

Add any initialization after the call

End Sub

2. Reload OnKeyPress

Protected Overrides Sub OnKeyPress ()

Sub OnKeyPress () Sub OnKeyPress () Sub

OnKeyPress (ByVal e As System.Windows.

Forms.KeyPressEventArgs)

Dim key As String

Key = e.KeyChar

'check whether the button is the enter key, and if so, set the

The focus is attached to button1 and the Click command is executed

If key = Microsoft.VisualBasic.

ChrW (13) Then

Button1.Focus ()

Button1.PerformClick ()

End If

End Sub

Thank you for reading! This is the end of the article on "how to use Hashtable in VB.NET". I hope the above content can be of some help to you, so that you can learn more knowledge. if you think the article is good, you can share it for more people to see!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report