dynamic winform

G

George Meng

I have a VB.net database application, sometimes customers want to make some
small changes.

For example, they tell me that they need a new field; they want to add a
text field on a Winform as well as database.



Right now, every time my customers request a change, I need to



Change the database

Change the stored procedure

Change the web service

Change the Winform

And rebuild everything



Is there a way that I can build some dynamic solution to do this without
changing my application? I mean put the Winform syntax in some where, and
always load the syntax on the fly? When they need to add something, I just
need to change the syntax.



Any suggestions are welcome.



Thank you very much!



George
 
K

Ken Tucker [MVP]

Hi,

Maybe try something like this.

http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnadvnet/html/vbnet10082002.asp

Ken
-------------------
I have a VB.net database application, sometimes customers want to make some
small changes.

For example, they tell me that they need a new field; they want to add a
text field on a Winform as well as database.



Right now, every time my customers request a change, I need to



Change the database

Change the stored procedure

Change the web service

Change the Winform

And rebuild everything



Is there a way that I can build some dynamic solution to do this without
changing my application? I mean put the Winform syntax in some where, and
always load the syntax on the fly? When they need to add something, I just
need to change the syntax.



Any suggestions are welcome.



Thank you very much!



George
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Top