You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
507 B
VB.net

Imports System
Imports System.Drawing
Imports System.Windows.Forms
Namespace hash
Public Class Form1
Inherits System.Windows.Forms.Form
Public Shared Sub Main(ByVal args As String())
Application.Run(New Form1)
End Sub
Public Sub New()
End Sub
Private Sub InitializeComponent()
Me.AutoScaleBaseSize = New System.Drawing.Size(5, 13)
Me.ClientSize = New System.Drawing.Size(292, 266)
Me.Text = "Form1"
Me.Name = "Form1"
End Sub
End Class
End Namespace