hi! is it at all possible to save a zip file using a stored string?
An explaination:
I got an app with a dialog.input asking for a name, it stores this name as itemname
What I want is for my app to add files to a zip file, but with the name from itemname, I have tried to use ".."to combine things, but it aint going right, the code I have at the moment is:
itemname = Dialog.Input("Enter Data", "Enter Name:", "", MB_ICONQUESTION);
Label.SetText("Atitle", itemname);
FileTable = {_SourceFolder.."\\AutoPlay\\TempFolder\\text.txt" ;_SourceFolder.."\\AutoPlay\\TempFolder\\Intro.txt " ;_SourceFolder.."\\AutoPlay\\TempFolder\\ending.tx t" };
Zip.Add(_SourceFolder.. "\\AutoPlay\\Docs\\Inform\\"..itemname", FileTable, false, "passworded", 0, nil, false);
this informs me that a ')' was expected at the end of the password part, what am I doing wrong?

