Ok...
I am trying to gaze into a folder (On the CD) "Plugs" that has many other folder that I'm trying to get the names of. These names will be placed into a ListBox to then be double clicked and used. Below is what I thought the code should look like, where I'm I going wrong?
--Look in the folder "Plugs" and get all the names of the folders.
result = Folder.Find("AutoPlay\\Plugs", "*.*", true, nil);
--Make a empty table called "zip".
zip = {};
--inserts the folder names from the variable "result" into the zip table.
Table.Insert(zip, 1, result);
--Grabs all the folder names from the table and adds them to a variable called "folders".
folders = Table.Concat(zip, ";", 1, TABLE_ALL);
--places the results of "folders" to be viewed in a ListBox called "plugs2".
result = ListBox.AddItem("plugs2", "", folders);

So I hope that'll help. I figure it should at least be a very good reference for people to keep handy, i.e. when you need to remember how to write a function to write dynamic table rows you can just click on that chapter and watch the video and in 5 minutes you'll have it done...