> Unfortunately, no. > I tried: > const char[15] DLL_NAME="The DLL name"; Hmm.. String literals are supposed to have an additional '\0' (assuming that is the problem), so you could also try: name = "The DLL Name".ptr Sorry about this being the blind leading the blind.. - Paul