Skip to content

Commit

Permalink
fixing button in python config
Browse files Browse the repository at this point in the history
  • Loading branch information
soaresden committed Feb 8, 2020
1 parent 4184650 commit 2091bb2
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
6 changes: 5 additions & 1 deletion GoogleHomeWindows/GHome3.vb
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,10 @@

fullcmd.Text = partie1 & partie2 & partie3

Process.Start("cmd", "/K " & fullcmd.Text)
End Sub

Private Sub Button3_Click(sender As Object, e As EventArgs) Handles Button3.Click
Dim commando As String = "/k " & fullcmd.Text
Process.Start("cmd", commando)
End Sub
End Class
12 changes: 12 additions & 0 deletions GoogleHomeWindows/Win2.Designer.vb

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 2091bb2

Please sign in to comment.