Hi there, first of all thanks for your quick answers.
Geoffrey Spear wrote: > I don't have a solution for your freezing problem, but you should be > able to replace "C:/Docume~1/$ENV{'USERNAME'}/Anwendungsdaten" with > "$ENV{'APPDATA'}" and have it work in any locale. I could do that, but because of the used glob() function I can't. Because C:\Documents and Settings\ contains whitespaces which glob() can't handle (as far as I read everywhere). It would end up with C:\Documents all the time. But I need the glob() here to get into the <random_number>.default Firefox profile folder. I did something "easier"... I rebuilt the GUI with another button which opens a file browser. Now I can select the cookie file on my own. ;) Jason Plum wrote: > This is not a GUI issue per se, as it is the fact that your routine > runs > synchronous, in the main thread of the application. To remove this lag > (and > the delayed drawing of the window) you will need to do some looking > through > the mail archives and find how to write this into a separate thread. Hmm... i will try to read me into this Thanks for your help. :)