Using vc++ 6.0 I've initialized 1 bstr

Code:
BSTR *sRes;
After that, I put some text in it:

Code:
*sRes = SysAllocString(OLESTR("Root->Left != NULL:Root->Right != NULL"));
But here comes the tricky part.. I want to add more text into the String..
But how?

Anyone got an idea?