자료실

부자는 돈을 써서 시간을 아끼지만 가난한 사람은 시간을 써서 돈을 아낀다

vb.net

IT HUB를 찾아주셔서 감사합니다.

Chrome [vb.net] 크롬이 열려 있으면 새창으로 열기

페이지 정보

profile_image
작성자 하나를하더라도최선을
댓글 0건 조회 7,077회 작성일 19-07-08 00:14

본문

        Dim chrome As Boolean
        Dim url As String = "fb.com"
        Dim pname As Process() = Process.GetProcessesByName("chrome")
 
        If pname.Length = Then
            chrome = False
        Else
            If Not chrome Then
                Dim process As Process = New Process()
                process.StartInfo.FileName = "chrome"
                process.StartInfo.Arguments = url + " --new-window"
                process.StartInfo.WindowStyle = ProcessWindowStyle.Minimized
                process.Start()
            End If
 
            chrome = True
        End If

[이 게시물은 하나를하더라도최선을님에 의해 2019-07-08 00:15:26 vba에서 이동 됨]

댓글목록

등록된 댓글이 없습니다.