본문 바로가기
VB.net

클래스 라이브러리 중복실행 방지

by 호야호잇 2018. 11. 9.

Form Load에 집어 넣음


        If Application.OpenForms().OfType(Of 폼이름).Count > 1 Then

            폼이름.Close()

        End If