Jump to content

razor5070

Members
  • Posts

    116
  • Joined

  • Last visited

Posts posted by razor5070

  1. 19948_1114822330004_1810336417_228660_4079700_n.jpg

    Just some random stuff i threw together in a cheap raidmax case, had to paint the inside, i didn't like the bare metal.

    uh, specs are

    Phenom II 965 BE @ 3.4, Stock cooler for now. i did clean off the stock paste and use Artic silver.

    4 GB @ 1600

    Radeon 4830, i only play street fighter 4, i don't really need anything better.

    750 raidmax psu.

    128 gb SSD < love this thing

    and a 320 gb Western Digital.

    Edit : I almost forgot, os is Windows 7 64 bit

  2. Well... Since i moved to native C++ it's just been a fun ride making apps...

    Figured ide ask here if anyone know's any good DX books?

    I made a form... Extended the glass .. now i want to add a DX component..

    Straight from the Main.cpp

    #include <windows.h>
    #include <dwmapi.h>
    #pragma comment(lib,"dwmapi")
    
    
    bool Running = true;
    
    LRESULT CALLBACK WndProc(HWND hWnd, UINT Msg, WPARAM wParam, LPARAM lParam) {
    switch (Msg) {
    	case WM_DESTROY:
    		//End();
    		//Running = false;
    		PostQuitMessage(0);
    		break;
    
    }
    return DefWindowProc(hWnd, Msg, wParam, lParam);
    }
    
    int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nShowCmd) {
    WNDCLASSEX wc;
    MSG Msg;
    HWND hWnd;
    wc.cbSize =	sizeof(WNDCLASSEX);
    wc.style = CS_HREDRAW | CS_VREDRAW;
    wc.lpfnWndProc = (WNDPROC)WndProc;
    wc.cbClsExtra = 0; 
    wc.cbWndExtra = 0; 
    wc.hInstance = hInstance;
    wc.hIcon = 0; 
    wc.hCursor = LoadCursor(NULL, IDC_ARROW);
    wc.hbrBackground = (HBRUSH)(RGB(0,0,0)); 
    wc.lpszMenuName = NULL;
    wc.lpszClassName = "CTmain";
    wc.hIconSm = 0;
    
    RegisterClassEx(&wc);
    hWnd = CreateWindow("CTmain", "DX Test", WS_OVERLAPPEDWINDOW, CW_USEDEFAULT, CW_USEDEFAULT, 720, 400,
    	NULL, NULL, hInstance, NULL);
    if (!hWnd) {
    	return 0;
    }
    
    ShowWindow(hWnd, nShowCmd);
    UpdateWindow(hWnd);
    MARGINS mar = {0};
     mar.cyBottomHeight = -1;
     DwmExtendFrameIntoClientArea ( hWnd, &mar );
    ZeroMemory(&Msg, sizeof(Msg));
    while (Running == true) {
    	if (PeekMessage(&Msg, hWnd, 0, 0, PM_REMOVE)) {
    		TranslateMessage(&Msg);
    		DispatchMessage(&Msg);
    	} else {
    
    	}
    }
    return 0;
    }

    Just messing around.. Any thaughts?

  3. your going to have to remove the old driver and install a new one, but i'm sure you knew that.

    your going to need a xp live cd for this.

    This is a very complicated job, the only other thing is to reinstall windows.

    and i'm not going to take 45+ minutes explaining if your not going to do it.

    just tell me if you want to do it and i'll link and explain how.

  4. K i blocked viewpoint but did u check out the new log i posted and the site that i posted? i did the combofix scan and it removed that MSSserver that was running rundll32.exe But im not sure if i shuold do that other part i posted about the CFScript :unknw:

    Every little bit helps, i say do it remove all the spyware that you can.

    What antivirus do you have? also have you tryed spybot search and destroy?

×
×
  • Create New...