well I loaded up something every place I could in every field and nothing.. thus the reason for my post.. and btw I am looking for something like mame32 in that its basically the same thing but I could right click on a game for an option to move that rom file to another folder either cut or copy.
I think that Listgen (and ListGen.NET) are really what you're looking for, you just don't know it yet

Why would anyone want to go through a list of 5500+ games just to arbitrarily pick and choose indiviidual ROMs they wanted to copy/move? I've never been in, or witnessed, a situation where there wasn't some criteria involved:
dd: "Give me all games that are classified as mature or mahjong, and delete them from my ROM folder."
dt: "SELECT 'delete c:\mame\roms\' || romname || '.zip' FROM gamedata WHERE catver_category LIKE '%*mature*%' AND catver_category LIKE '%mahjong%'"
dd: "Give me a list of all the classic 4-way games so I can back them up to a CD to move to my old P1 system."
dt: "SELECT 'copy c:\mame\roms\' || romname || '.zip c:\temp\' FROM gamedata WHERE year >= 1980 AND year <= 1989 AND control = 'joy4way'"
Eventually (I'm working on it now) you'll be able to do things like:
dd: "Give me all games that the language is defaulted to Japanese and are mature because I LOVE softcore japanese pr0n"
dt: "SELECT a.romname FROM a.gamedata WHERE catver_category LIKE '%*mature*%' AND (SELECT val FROM b.mame_dipswitches WHERE b.romname = a.romname AND key='Language' AND val='Japanese')"
Or how about:
dd: "Give me all my USA NES ROMs that are known as working"
dt: "SELECT stripped_desc FROM gamedata WHERE platform='nes' AND tosec_verified = '1' AND tosec_country = 'USA'"
...and...
dd: "Give me all my NES ROMs EXCEPT USA ones and ones that are known as working so I can delete them"
dt: "SELECT 'del c:\roms\nes\' || tosec_country || '\' || full_desc || '.zip' FROM gamedata WHERE platform='nes' AND (NOT tosec_verified = '1' AND NOT tosec_country = 'USA')"
...or even...
dd: "Give me a list of all games so I can pick and choose which ones to delete/move/copy"
dt: "SELECT full_desc FROM gamedata WHERE platform = 'mame'"
(check all the ones you want, then choose what you want to do with them. Enter in rom path, dest path if applicable and click go.)
Can you give me an example of where you wouldn't have some kind of criteria?
-sab