Jump to content

Predator77

Members
  • Content Count

    69
  • Donations

    $0.00 
  • Joined

  • Last visited

Everything posted by Predator77

  1. Predator77

    Need help to find drivers

    try this one reviews on it here http://members.driverguide.com/driver/detail.php?driverid=114792&action=ratings http://rapidshare.com/files/154168799/CMI8738_WDM_0639XP.zip
  2. Predator77

    Vista

    why don't you get windows 7 from the many links on here and get the workaround for it here as well?? i know you probably prefer vista as your used to it, but windows 7 to me is far more stabler and better in my opinion!!! anyway thats my advice to you , but thats coming from me!!! :cwrocks: if you need any help with a link for an iso for windows 7 just give us a shout
  3. Predator77

    Windows 7 Recovery Discs

    when you get your system up and running again you can create your own from within windows go to control panel > back up your computer > create a system repair disk. then follow the prompts and if you cannot get this disk i will up it for you
  4. thank you kind sir and no offence taken yogibogeybox
  5. ooooooooooooohhh sorry but i was tired and did not think at the time, but my word was good hey?? and @kenner i have yet to work out that saying?? but yes its a figure of speech pointed at an individual ( that being me i take it ) and took on the chin. but on to the game in question synorthographic
  6. Predator77

    CyberPhoenix Sig making tut classes

    thanks kevin, and gremlinn i think its best we start with a good background with great flow in it, so i would need your adice on what to go about that on sir
  7. Predator77

    CyberPhoenix Sig making tut classes

    gremlinn thanks for your kind answer and please give me a bit of time to get back home as i have to go down the road in a minute , and then we can make a start when i get back home my friend, and what would you like to get started
  8. Predator77

    Drawing Practice

    just right click on image and copy image url to new tab, hit enter and you will see them as i just tried that and it worked o.k and as for resizing your images, you can do that in photoshop or any image resizing program i have done this for you in photoshop but did not know the image size you needed.
  9. try this Run Registry Editor (regedit.exe), and check the following registry key: [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\NetBT\Parameters] Please find if the "TransportBindName" value exists. If either of them does not exist, create it. If either one is incorrect, change the data. The values should be like this: Name: TransportBindName Type: REGSZ Value: \Device\ Under the same registry key ([HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\NetBT\Parameters]), if you find the "SMBDeviceEnabled" value exists and is 0, it means Direct Hosting is disabled. You may change it to 1 to turn on it unless there are requirements that this should be disabled. Name: SMBDeviceEnabled Type: REG_DWORD Value: 1 Go to Start--> Run--> Type Services.msc and make sure that " Computer Browser " and " Workstation " services are running. this should hopefully resolve it for you
  10. Predator77

    CyberPhoenix Sig making tut classes

    well gremlinn, its good to practice to get that bit better, and i also respect the help that you do for members to make them better, so i would like to apply here to get that help off of you to see if i can improve a lot more.
  11. Launch notepad using C++ #include <iostream.h> #include <windows.h> int main(void) { cout<<"Explorer will launch.\n"<<endl; /*replace with the path to your explorer.exe*/ system("h:\\windows\\explorer.exe"); return 0; }
  12. Get the OS version on your PC in C++ #include <windows.h> #include <iostream> #include <dos.h> #include <string.h> int main(void) { OSVERSIONINFO osver; osver.dwOSVersionInfoSize = sizeof(osver); if (GetVersionEx(&osver)) { if (osver.dwPlatformId == VER_PLATFORM_WIN32s) cout <<"Win32 "; else if (osver.dwPlatformId == VER_PLATFORM_WIN32_WINDOWS) { if (osver.dwMinorVersion == 0 && (strchr(osver.szCSDVersion,'B') == NULL) && (strchr(osver.szCSDVersion,'C') == NULL)) cout <<"Windows 95 "; else if (osver.dwMinorVersion == 0 && (strchr(osver.szCSDVersion,'B') != NULL)) cout <<"Windows 95 OSR 2 "; else if (osver.dwMinorVersion == 0 && (strchr(osver.szCSDVersion,'C') != NULL)) cout <<"Windows 95 OSR 2.5 "; else if (osver.dwMinorVersion == 10 && (strchr(osver.szCSDVersion,'A') == NULL)) cout <<"Windows 98 "; else if (osver.dwMinorVersion == 10 && (strchr(osver.szCSDVersion,'A') != NULL)) cout <<"Windows 98 Second Edition "; else if (osver.dwMinorVersion == 90) cout <<"Windows Millenium Edition "; else cout<<"Unknown Windows "; } else if (osver.dwPlatformId == VER_PLATFORM_WIN32_NT) cout <<"Windows NT "; cout <<osver.dwMajorVersion<<"."<<osver.dwMinorVersion<<"." <<(osver.dwBuildNumber & 0xffff)<<osver.szCSDVersion<<endl; } else { cout <<"Cannot gain version information."<<endl; } system("pause"); return 0; }
×