중복실행 썸네일형 리스트형 WPF & C# - 중복실행방지 2가지 방법 ( 이중실행 / Titile명 기준 / 뮤택스 / 뮤텍스 / Mutex ) WPF & C# - 중복실행방지 2가지 방법 ( 이중실행 / Titile명 기준 / 뮤택스 / 뮤텍스 / Mutex ) MainWindow.xaml.cs - 타이틀명 기준 123456789101112// 이중실행 방지를 위한 DLL import[DllImportAttribute("user32.dll", EntryPoint = "FindWindow")]public static extern int FindWindow(string clsName, string wndName); public MainWindow(){ InitializeComponent(); // 이중실행 방지를 위한 코드 ( TITLE 명을 기준으로 한다.) this.Title = "Title명"; if (Fin.. 더보기 VB.NET - 각종 정보 출력하기 【 VB.NET 】 @ 각종 정보 출력하기 # Form1.vb Public Class Form1 Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load If UBound(Diagnostics.Process.GetProcessesByName(Diagnostics.Process.GetCurrentProcess.ProcessName)) > 0 Then MsgBox("프로그램이 이미 실행중입니다!", MsgBoxStyle.Exclamation + MsgBoxStyle.OkOnly, Me.Text) End End If Label1.Text = "해상도 너비" TextBox1.Text = My.Computer.Screen.Bounds.. 더보기 이전 1 다음