Working on 2 projects under single solution

  • Thread starter Thread starter M Naveed Qamar
  • Start date Start date
M

M Naveed Qamar

Guest
Hello, I am working on 2 project under single solution in C# desktop application. Here I want to update a Label on form1 of project1 which is dependent on project2 string variable (a calculation is happened on project2). Note that this is all required on runtime.


I have tried so many techniques; I have made a static variable on project1 and send it to project2 i.e., Process.Start("Project2.exe", textbox1.Text) for calculation and on button click from project2 a static method is called which is made on project1 for what I want to update a label on form, but because of static method label is not accessible there.

Continue reading...
 
Back
Top