by Ciege » Fri Oct 21, 2011 6:11 pm
OK, well then you can add code similar to this:
- Code: Select all
strYear = System.DateTime.Now.Year.ToString();
strMonth = System.DateTime.Now.ToString("MM");
strDay = System.DateTime.Now.ToString("dd");
strHour = System.DateTime.Now.ToString("hh");
strMinute = System.DateTime.Now.ToString("mm");
strSecond = System.DateTime.Now.ToString("ss");
strDateTimeStamp = strYear + "_" + strMonth + "_" + strDay + "___" + strHour + "_" + strMinute + "_" + strSecond;
Then your input variable would be:
- Code: Select all
"Cheese" + strDateTimeStamp;
If this or any response has helped you, please reply to the thread stating that it worked so other people with a similar issue will know how you fixed your issue!
Ciege...