-Then you are here right.
Info: Says nothing about my English, I've tried my best
1) Create a new form "Control.cs"
2) Look in General.cs for:
"public static System.IO.StreamWriter sw = new System.IO.StreamWriter(Application.StartupPath + @"\ServerLog.txt", true);"
and add above:
Code:
static Thread _thread;
static void FormStart(object param)
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Control());
}
and add under all:
Code:
_thread.Start();
Code:
namespace COServer_Project
{
public partial class Control : Form
{
public Control()
{
InitializeComponent();
}
}
}






