Ok, I am getting information from a .cfg file that I have created but I am using the INI method of receiving this info. Basically it is like this:

Getting a string from TEMP.CFG
Dir=C:\HAHA

Saving the string as strDir

Wanting to use that as a part of knowing where things need to be saved.

Example

save file to C:\HAHA\DEBUG.LOG
well,
strDir & "\DEBUG.LOG" does not equal C:\HAHA\DEBUG.LOG,
it only gives me the strDir and leaves out the DEBUG.LOG part. Why? How can I make this work?

Thanks in advance,
Rick