hello guys good am/eve!

I have a question and need answer if possible...

in VB.NET

this is the code

Code:
Dim _date as String = Date.Today

label1.Text = " ' " & _date & " ' Record"
or

Code:
Dim _date as String = Date.Today

label1.Text = _date + " Record"
output


3/8/2015 Record

in C++ is that possible?

this is my target code

Code:
void printRecordFile( fstream &readFromFile )
{
	ofstream outPrintFile( "C:\\Record.txt", ios::out );
}
I want is if I call printRecordFile it will create a filename 03-08-2015_Record.txt