I have a form in C# that receives a parameter would like the cobol call this program passing this parameter, the form would open and show what came from cobol?
namespace nomeprograma
{
 public partial class Form1 : Form
 {
 public Form1()
 {
 InitializeComponent();
 }
 public void QualMsg(string MSG)
 {
 campo.Text = MSG;
 }
 }
}
Thank you!
        Page 1 / 1 
    I have a form in C# that receives a parameter would like the cobol call this program passing this parameter, the form would open and show what came from cobol?
namespace nomeprograma
{
 public partial class Form1 : Form
 {
 public Form1()
 {
 InitializeComponent();
 }
 public void QualMsg(string MSG)
 {
 campo.Text = MSG;
 }
 }
}
Thank you!
declare myform as type nomeprograma.Form1 = new nomeprograma.Form1
invoke myform::QualMsg("This is my string")
I have a form in C# that receives a parameter would like the cobol call this program passing this parameter, the form would open and show what came from cobol?
namespace nomeprograma
{
 public partial class Form1 : Form
 {
 public Form1()
 {
 InitializeComponent();
 }
 public void QualMsg(string MSG)
 {
 campo.Text = MSG;
 }
 }
}
Thank you!
Sign up
Already have an account? Login
Welcome to the Rocket Forum!
Please log in or register:
Employee Login | Registration Member Login | RegistrationEnter your E-mail address. We'll send you an e-mail with instructions to reset your password.