Dynamically create winforms

  • Thread starter Thread starter Walter Van Hecke
  • Start date Start date
W

Walter Van Hecke

Hi,

I've been looking for a good article or sample code to dynamically create
winforms,
I have to make a program that allows the user to add different products each
product has different
properties and values the only thing they in common is that they have a
price and a name.

Is it possible to create winforms and/or sql queries dynamically depending
on the type of data in the database???

Thx everybody

Walter
 
I've been looking for a good article or sample code to dynamically create
winforms,
I have to make a program that allows the user to add different products each
product has different
properties and values the only thing they in common is that they have a
price and a name.

Is it possible to create winforms and/or sql queries dynamically depending
on the type of data in the database???

Sure. Just look at the sample in the SDK documentation for the Form
class. It shows creating a form in code and adding buttons to it.

http://tinyurl.com/27prz
 
Back
Top