Taki problem. Loading disabled by Include/Exclude setting.

0

Witam.

Jako projekt mam do narysowania figure kodem ASCII.
Jestem w trakcie pisania kodu do rysowania figury, ale kiedy debuguje i dochodze do tego momentu wyrzuca mi takie cos :

'litera1.exe': Loaded 'C:\Windows\SysWOW64\ntdll.dll', Cannot find or open the PDB file
'litera1.exe': Loaded 'C:\Windows\SysWOW64\kernel32.dll', Cannot find or open the PDB file
'litera1.exe': Loaded 'C:\Windows\SysWOW64\KernelBase.dll', Cannot find or open the PDB file
'litera1.exe': Loaded 'C:\Windows\SysWOW64\msvcp100d.dll', Symbols loaded.
'litera1.exe': Loaded 'C:\Windows\SysWOW64\msvcr100d.dll', Symbols loaded.
'litera1.exe': Loaded 'C:\Windows\SysWOW64\guard32.dll', Cannot find or open the PDB file
'litera1.exe': Loaded 'C:\Windows\SysWOW64\user32.dll', Cannot find or open the PDB file
'litera1.exe': Loaded 'C:\Windows\SysWOW64\gdi32.dll', Cannot find or open the PDB file
'litera1.exe': Loaded 'C:\Windows\SysWOW64\lpk.dll', Cannot find or open the PDB file
'litera1.exe': Loaded 'C:\Windows\SysWOW64\usp10.dll', Cannot find or open the PDB file
'litera1.exe': Loaded 'C:\Windows\SysWOW64\msvcrt.dll', Cannot find or open the PDB file
'litera1.exe': Loaded 'C:\Windows\SysWOW64\advapi32.dll', Cannot find or open the PDB file
'litera1.exe': Loaded 'C:\Windows\SysWOW64\sechost.dll', Cannot find or open the PDB file
'litera1.exe': Loaded 'C:\Windows\SysWOW64\rpcrt4.dll', Cannot find or open the PDB file
'litera1.exe': Loaded 'C:\Windows\SysWOW64\sspicli.dll', Cannot find or open the PDB file
'litera1.exe': Loaded 'C:\Windows\SysWOW64\cryptbase.dll', Cannot find or open the PDB file
'litera1.exe': Loaded 'C:\Windows\SysWOW64\version.dll', Cannot find or open the PDB file
'litera1.exe': Loaded 'C:\Windows\SysWOW64\imm32.dll', Cannot find or open the PDB file
'litera1.exe': Loaded 'C:\Windows\SysWOW64\msctf.dll', Cannot find or open the PDB file
'litera1.exe': Loaded 'C:\Windows\SysWOW64\fltLib.dll', Cannot find or open the PDB file
'litera1.exe': Loaded 'C:\Windows\SysWOW64\apphelp.dll', Cannot find or open the PDB file

'litera1.exe': Loaded 'ImageAtBase0x4a010000', Loading disabled by Include/Exclude setting.
'litera1.exe': Unloaded 'ImageAtBase0x4a010000'
'litera1.exe': Loaded 'ImageAtBase0x4ac90000', Loading disabled by Include/Exclude setting.
'litera1.exe': Unloaded 'ImageAtBase0x4ac90000'
'litera1.exe': Loaded 'ImageAtBase0x4a230000', Loading disabled by Include/Exclude setting.
'litera1.exe': Unloaded 'ImageAtBase0x4a230000'

zabardzo nie wiem jak sobie z tym poradzic i prosze o pomoc
dodam ze pisze w Visualu 2010.

z góry dziekuje.

0

Nie radzić, olać.

0

ale skoro on nie chce mi nic wyswietlic i stoje w miejscu bo nie wiem czy dobrze ukladam petle, to jak mam to olac ?

0

Fachowa porada ;)

tools->options->debugging->symbols->Specify excluded modules

Wejdź tam i upewnij sie, że nic nie jest wyłączone.

0

juz tam bylem i sprawdzalem jest puuusto. a moze byc to wina kodu ?

0

Zamknij program i uruchom go jako administrator (prawy-->uruchom jako administrator). Będzie działać :)

0

normalnie w winodwosie? Prawy -> uruchom jako administrator ? nie zabardzo rozumiem :)

0

Tak, normalnie :)

0

jestem administratorem i nie mam takiej opcji :/

0

znalazlem ta opcje. ale nic z tego... dalej to samo moze po kodzie bys mi pomogł co zrobilem nie tak...

  • Projekt rysowania figury kodem ASCII *
    #include "stdafx.h"
    #include <iostream>
    #include <conio.h>
    #include "Konsola_1.h"
    #include <Windows.h>

const int X=40, Y=23;

using namespace std;
void wstep();
void czytaj_dane(int &size, char &znak);
void rysuj_figure(float X, float Y, float size, char znak);
int main ()
{

char znak;
int size;
gotoxy (X,Y);
clreol();
polskie_litery();

wstep();
czytaj_dane(size, znak);
rysuj_figure (X, Y, size, znak);

}
void wstep ()

{
HideCursor();
cout << " \n"
" Witaj w Programie do rysowania znakiem ASCII poniższej figury \n"
" \n"
" \n"
" \n"
" \n"
" \n"
" * * \n"
" * * \n"
" * * \n"
" * * \n"
" * * * \n"
" * * * * \n"
" * * \n"
" \n"
" \n"
" \n"
" \n"
" \n"
" \n"
" Nacisnij dowolny klawisz aby przejść dalej \n"
" \n";
_getch();
system("cls");
}
////////////////////////////////////////////////////////////////////////////////////////
void czytaj_dane(int &size, char &znak)
{

ShowCursor();
int size_x;

cout << "\n Wybierz i naciśnij klawisz którym będzie rysowana figura: ";
cin >> znak;
cout << " Wybrałeś: " << znak;
cout << " \n Wybierz szerokość figury w zakresie od 3 do 23: ";
cin >> size_x;
	
	if (size_x < 3 || size_x > 23 )
		do
	{
		cout << "\n Podana szerokość nie mieści się w zakresie." << endl;
		cout << " Wybierz jeszcze raz: ";
		cin >> size_x;
	}
		while ( size_x < 3 || size_x > 23 );
		
		size_x = size;
		

		

		

}
///////////////////////////////////////////////////////////////////////////////////////////////////
void rysuj_figure (float X, float Y, float size, char znak)

{
HideCursor();
clreol();
int i;
int x1, y1;

	for (i=0 ; i<=size; i++)
	{	
	x1=X-1;
	y1=Y-1;
	
	gotoxy (x1,y1);	
	cout << znak;
	}
	



system("pause");

}

0

Weź to w kod <code-cpp> i </code=cpp> bo ledwo co widać. Jesteś pewien, że masz jakąś funkcję do zatrzymywania programu po pojawieniu się figury? Spróbuj umieścić system pause na końcu int main oraz dodaj po tym return 0;

1 użytkowników online, w tym zalogowanych: 0, gości: 1