Ok, so i don't think I need to post all the code....most of you have seen a lot of it anyways, if I need to I don't mind. But anyways, I made the outFileDrs Stream, then at the end of the program it closes it. But its only 1 kb? It should be around 50,000 kbs......
Any fast ideas on what may not be working?
EDIT: Maybe this piece of code....?
char *tempData = new char [1];
delete [] tempData;
for each (auto outTable in outTables)
{
for each (auto outItem in outTable.Items)
{
tempData = new char [outItem.Data.size()];
for each (char byt in outItem.Data)
{
*tempData += byt;
}
outFileDrs.write(tempData, outItem.Data.size());
delete [] tempData;
}
}