Question:
---------------------------------------------------------------------------------------------------
Why you create an auto patch server?
Why not make it instant download the patch that is needed directly from the URL?
---------------------------------------------------------------------------------------------------
Quote:
Originally Posted by ExTaCy
patcher screen wont move can you add drag window?
|
add this into the form
Code:
protected override void WndProc(ref Message m)
{
base.WndProc(ref m);
if (m.Msg == WM_NCHITTEST)
m.Result = (IntPtr)(HT_CAPTION);
}
private const int WM_NCHITTEST = 0x84;
private const int HT_CLIENT = 0x1;
private const int HT_CAPTION = 0x2;