I have the following code in the same TSDK class
public Int16 Write_To_Consol_dr(string ConsolCmd)
{
textBoxConsol.AppendText(ConsolCmd + "\n");
textBoxConsol.AppendText("Tena_Consol>");
}
public static Int16 Write_To_Console(string ConsolCmd)
{
TSDK.FormMain Clasi = new TSDK.FormMain();
Clasi.Write_To_Consol_dr(ConsolCmd);
}
I am not seeing anything in the Textbox. Thanks