Já jsem neodpovídal vám ale tady pánovi. Pochopil jsem to tak, že programu windows dá parametr. Zpracování:
Public Class Form1
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Process.Start("WindowsApplication1.exe", TextBox1.Text)
End Sub
Private Sub PictureBox1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles PictureBox1.Click
Dim a = Command()
PictureBox1.Image = New Bitmap(a)
End Sub
End Class
|