I am new to Windows Form applications in C# and i am currently stuck and in need of a bit of help.
Lets say, i currently have one windows form application App1 running. Upon the occurrence of a specific event in App1, lets say a button_click
, another windows form application App2 should start. Also App2 must take a few common values from App1 like lets say a date value and act upon this date and perform some other operations.
is this fundamentally possible and if so how can it be achieved ?
Thanks for the help..