如魔力和石器的都是全屏玩的而且只能开一个
很多外挂可以让他们在运行在自己的窗体中,这是怎么做到的
而且同时可以多启动好几个
希望大家给个意见
有源码的最好
要多少分自己说

解决方案 »

  1.   

    这个东东是可以实现的,去playicq看看,有个模仿windows桌面的软件,就可以实现了
      

  2.   

    procedure TForm1.Timer2Timer(Sender: TObject);
    var
       WindowText: array[0..255] of char;  // holds the text of the window
       ClassText: array[0..255] of char;  // holds the text of the window
    begin
       TheWindow:=GetForegroundWindow;
       GetClassName(TheWindow, ClassText, 255);
       if ClassText='游戏的窗口的类名' then
       begin
         windows.SetParent(TheWindow,Handle );
         timer2.Enabled :=false;
       end;
    end;
      

  3.   

    楼上的方法可行,不过thenwindow未定义,Var下加一句thewindow:HWND;
    不过显示效果很不好,只能显示一部分,不是缩小窗口
    楼主可以结帖了