Passing Out Results

Instead of actually passing values out of the windows form, one method is to use static class fields.


Static Fields

The simpliest way is to use a public static field inside an Internal Class.
This will allow the field to be accessed from anywhere, including inside Windows Forms.

internal class modSpecific 
{
   public static string _ProposalName;
}



© 2024 Better Solutions Limited. All Rights Reserved. © 2024 Better Solutions Limited TopPrevNext