hi...i'm using msvs 2008. in the past, using msvs6, i've stepped through with F10 and F11. i'm new to msvs 2008 and i came across and issue. i can step line by line but it goes way too deep when i step into a function.

can anyone please test this for me?

Code:
void create_list(string filelist)     // when you step into this, it brings up some very low-level code
void create_list(string &filelist)    // steps as it should


Code:
#include <iostream>
#include <string>
#include <fstream>

using namespace std;

void create_list(string filelist);

void main ()
{
string filelist = "filelist";

	create_list(filelist);
}

void create_list(string filelist)
{
string command = "dir /d c:\\ > ";
	command = command + filelist;
	system(command.c_str());
}
thanks...bg742