Export Resource



  • Hi there!

    I'm trying to save a file out of the resources like that:

    Upper BINARY "path\\to\\file.exe"
    

    can someone tell me what would be the code for FindResource() ?

    I tryed that and it didn't work:

    hRes = FindResource( NULL, MAKEINTRESOURCE(1033), "Upper".c_str() );
    

  • Mod

    Deutsches Forum!

    1. FindResoutrce, LoadResource, SizeOfResource ->CreateFile, Write...
    2. Der Ressource Typ müsste "Binary" sein. Öffne die EXE im VS und schau Dir die Ressourcen an die erzeugt wurden.
    3. HINSTANCEist nict angegeben, wenn es eine DLL ist musst Du das Modul mitangeben.
    4. Fehler mit GetLastError prüfen.



  • lol Entschuldigung irgendwie... :p

    Ich habe es jetzt so gelößt:

    UPPER RCDATA "file\\path....."
    

    und dann:

    hRes = FindResource( GetModuleHandle(NULL), "UPPER", RT_RCDATA );
    

Anmelden zum Antworten