프로그래밍언어/VB.NET

모듈(콘솔)에서 윈폼 띄우기

부산딸랑이 2013. 7. 2. 19:55

간단한 모듈의 예제입니다

Imports System.Windows.Forms 참조추가하시고..

더보기

Imports System

Imports System.ComponentModel

Imports System.Drawing

Imports System.Windows.Forms


Module Module1


    Sub Main()

        Application.EnableVisualStyles()

        Application.Run(New Form1())


    End Sub


End Module


Public Class Form1

    Inherits Form

    Public WithEvents button1 As Button


    Public Sub New()

        button1 = New Button()

        button1.Size = New Size(100, 40)

        button1.Location = New Point(30, 30)

        button1.Text = "Click me"

        Me.Controls.Add(button1)


    End Sub


    Private Sub button1_Click(ByVal sender As Object, _

        ByVal e As EventArgs) Handles button1.Click

        MessageBox.Show("Hello World")

    End Sub


End Class




Dll로 만들어둘고 실행할수도 있겠네요..

어차피 폼을띄울거라면 폼디자인을 먼저하고 DLL이나 모듈형태로 출력하는게 더 편하겠지만요..


'프로그래밍언어 > VB.NET' 카테고리의 다른 글

1부터 10까지 숫자 제곱구하기  (0) 2013.07.04
문자배열에서 특정문자의 갯수 추출  (0) 2013.07.04
VB.NET>Treenode  (0) 2013.07.01
HTML_Browser  (0) 2013.07.01
블로그 이사(이전) 프로그램  (0) 2013.06.29