how about if vergec had some way to get a list of files in a directory? unless there's a good reason why this isn't in already, ja
i'm a fan of the callback routine way of doing it, like say
SoundsDir = "/sounds";
EnumFiles(SoundsDir, "MyCallBackGuy");
and then you have the function which will be passed the file names one by one:
void MyCallBackGuy(string filename)
{
MyCreateMenuItem(filename);
}
Ya, so that's one way you could do it ya