i downloaded and tested the svn version, but i couldn't find the sfString chinese characters example. besides this i also found out all the openal related example crashed on my pc, that's happened when i exiting the example. i believe this is caused by mismatch of openal dll and lib. i'm using the latest precompiled sdk version from creative website. i hope you could check in your openal dll into svn for me to confirm the problem.
In case you like the detail, this's the location where they crashed
sfAudioDevice::~sfAudioDevice()
{
// Destroy all device-dependant resources
std::for_each(myResources.begin(), myResources.end(), std::mem_fun(&sfAudioResource::DestroyAudioResources));
// Destroy the context
alcMakeContextCurrent(NULL); // access violation reading location 0xXXXXX
if (myContext)
alcDestroyContext(myContext);
// Destroy the device
if (myDevice)
alcCloseDevice(myDevice);
}
btw, i hope you could set vc2005 project property "configuration properties/debugging/working directory" to $(TargetDir). i hope this could make anyone use the svn version easier to debug. thanks