15-06-15, 10:42 PM
نعم يمكن ، كود تشغيل الملف:
كود استقبال النص:
و output هو النص الذي تم استقباله.
كود :
Dim PSI As New ProcessStartInfo("Executable Path", TextBox1.Text)
Process.Start(PSI)كود استقبال النص:
كود :
Dim args As String() = Environment.GetCommandLineArgs()
Dim output As String
If args.Length > 1 Then
For x As Integer = 1 To args.Length - 2
x &= args(x)
If Not x = args.Length - 2 Then
x &= " "
End If
Next
End Ifو output هو النص الذي تم استقباله.

