Hi I'm relatively new to programming C++ and I'm writing a wrapper around this class we have. What I like to do is take a string like "%s %s" and use a va_list to fill the values in like a printf does the difference is that my method writes to a text file. The WriteString method needs to be used because it handles Unicode. So essentially the text variable needs the fully formatted string before I write to the file and I'm not sure how to do this. Thanks, I appreciate any help.