OK, just to settle things up...
IS IT LOTF or LOFT?:)
LOL, if i helped press thanks!!
IS IT LOTF or LOFT?:)
LOL, if i helped press thanks!!
fuck off..Quote:
u done wit that control panel should release it :P
GUIs = for noobs, console's are for real men.Quote:
fuck off..
just prownage made a good fucking control panel like me and i will do my best that he will not release it nor anyone else...
hopefully emme will not release a control panel like he said he was planning to make one
^^ I use GUI for my proxy. Just overide the Textwriter Write function. Works good for me. As for server, console all the way :D.Quote:
GUIs = for noobs, console's are for real men.
Quote:
private void Start_Load(object sender, EventArgs e)
{
TxtWriter = new TextBoxWriter(PacketTxt);
Console.SetOut(TxtWriter);
}
Quote:
public class TextBoxWriter : TextWriter
{
TextBox _output = null;
public TextBoxWriter (TextBox output)
{
_output = output;
}
public override void Write(char value)
{
base.Write(value);
_output.AppendText(value.ToString());
}
public override Encoding Encoding
{
get { return System.Text.Encoding.UTF8; }
}
}