Navigacija
Lista poslednjih: 16, 32, 64, 128 poruka.

Visual C++ 2005 Express Edition problem: MSVCR80D.dll was not found

[es] :: C/C++ programiranje :: Visual C++ 2005 Express Edition problem: MSVCR80D.dll was not found

[ Pregleda: 3460 | Odgovora: 4 ] > FB > Twit

Postavi temu Odgovori

Autor

Pretraga teme: Traži
Markiranje Štampanje RSS

Kurt2
SCG

Član broj: 79835
Poruke: 153
..nis1-nis.customer.sbb.co.yu.

ICQ: 156109951


+9 Profil

icon Visual C++ 2005 Express Edition problem: MSVCR80D.dll was not found03.05.2006. u 23:29 - pre 218 meseci
Kod je ovakav:
Code:

#include "stdafx.h"
#include <fstream>
#include <iostream>
#include <string>
using namespace std;


int _tmain(int argc, _TCHAR* argv[])
{
    string p;
    ifstream os("c:/sholim/milica2.txt",ios::in);
    ofstream io("c:/sholim/milica2r.txt",ios::out);
    while (!os.eof()) {
    os >> p;
        if (p == "[Sender]") 
        {
        io << endl; 
        }
    else {
        io << p;
         }
    }
    os.close();
    io.close();
    return 0;
}


A greška koju mi prijavljuje nije vezana za sam kod, nego za nešto drugo: This application has failed to start because MSVCR80D.dll was not found. Re-installing the application may fix this problem. Inače, koristim Visual Studio 2005 beta 2.



[Ovu poruku je menjao Gojko Vujovic dana 04.05.2006. u 10:15 GMT+1]
 
Odgovor na temu

#Ninja#
Tuzla

Član broj: 28925
Poruke: 259
195.222.32.*



+1 Profil

icon Re: A gde ja grešim?04.05.2006. u 00:54 - pre 218 meseci
Pa reinstaliraj Visual Studio. Nabavi finalnu verziju ako možeš.
 
Odgovor na temu

cynique
Ivan Štambuk
Zagreb@Croatia

Član broj: 93690
Poruke: 155
193.198.17.*

ICQ: 106979934
Sajt: istambuk.blogspot.com


Profil

icon Re: A gde ja grešim?04.05.2006. u 02:03 - pre 218 meseci
Project → Properties → Configuration Properties → Manifest Tool → Input and Output → Embed Manifest postaviti na No.

Ovo je meni pomoglo sa identičnim problemom.. U non-express verzijama čini se da nema takvog problema.

[Ovu poruku je menjao cynique dana 04.05.2006. u 11:34 GMT+1]
 
Odgovor na temu

Kurt2
SCG

Član broj: 79835
Poruke: 153
..nis1-nis.customer.sbb.co.yu.

ICQ: 156109951


+9 Profil

icon Re: A gde ja grešim?04.05.2006. u 09:11 - pre 218 meseci
Hvala, pomoglo je i meni!
 
Odgovor na temu

drismet
Kipar

Član broj: 41215
Poruke: 214
82.114.72.*

Sajt: perfect-digitalsat.com


Profil

icon Re: Visual C++ 2005 Express Edition problem: MSVCR80D.dll was not found04.05.2006. u 10:21 - pre 218 meseci
Citat:
cynique:
U non-express verzijama čini se da nema takvog problema.

Mislim da je tako. Ja sam na jednom kompu imao insaliran expess ed. i imao sam probleme. Mislim da sam resio tako sto sam kopirao MSVCR80D.dll i jos neke u System_Root/Windows/System32.
"It's not that I'm so smart, it's just that I stay with problems longer." ~ Albert Einstein
 
Odgovor na temu

[es] :: C/C++ programiranje :: Visual C++ 2005 Express Edition problem: MSVCR80D.dll was not found

[ Pregleda: 3460 | Odgovora: 4 ] > FB > Twit

Postavi temu Odgovori

Navigacija
Lista poslednjih: 16, 32, 64, 128 poruka.