this is now what I got to solve...
I have a windows application which is myApp.EXE starting as
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles MyBase.Load
....
end
also have a paint method
Private Sub me_Paint(ByVal sender As Object, ByVal e As
System.Windows.Forms.PaintEventArgs) Handles MyBase.Paint
'must have Imports System.Drawing.Drawing2D
Dim Canvas As Graphics = e.Graphics
...lots of code
end sub
I need to call myApp.exe from another.exe and
pass arguments and receive a return value...
what changes do I need to make to myApp.exe.