Long time since I last posted in this thread
. After discovering WPF (windows presentation fundation) and how to add 3d models to them, there is a good change that these features will be added to my entity forge, I know the tool sounds kind of familiar
but they should be different enough from eachother, e.g. mine contain hardcodes on soundcount (10 sounds per soundcount) because I know you guys love hardcodes 
Currently I am expanding the database with a new column to enhance the filtering of rows and make it easier for me to fix mistakes in the program.
Just for fun, here is an example on the effect of the change:
previus filter when opening the Ability table:
s = "id >= 0 And id <= 4 Or id >= 414 And id <= 419 Or id = 427 Or id = 432 Or" & _
" id >= 441 And id <= 447 Or id >= 459 And id <= 461 Or id >= 480 And id <=485"
Here is the new filter:
BindingSource.Filter = "i = 'gen'"
not only is it smaller, but I can also use it for all tables and I don't need to change it if I add or remove rows in the table, just by adding one more column. I still use the id for iterations, but it will be changed from "hardcoded" to using variables, so they also don't have to be changed.