I am designing an application for a library. Not a large scale library, but a very small scale library where my primary task is to just keep information about the books. But this library application should be able to adapt to any professional's private library. For an example, for a lawyer, apart from the basic information about the book (title, author, publisher etc), there maybe other special fields that is associated with a book (Case Number, Court Number etc). A doctor may have some other special attributes for a book. Same goes for other professions.
So I am going to use an SQL Server CE database and I am hoping to have a BOOK table with the usual attributes and on demand ALTER the table to suit the special needs (add more columns).
But my worry is generating the GUI dynamically to support the new attributes.
Are there any approaches to tackle the dynamic GUI generation ?
I am not asking for complete code (which obviously i wont get), but if you do have any coding to support the approach, please be kind enough to post it :)
Is there anything i should know about the pros, cons, dead ends, cautions or warnings etc ?