| Author: |
my.generation |
| Created: |
1/6/2005 6:48:21 PM |
| Last Updated: |
12/12/2005 6:28:51 AM |
For now this is only the C# version, I'll add the VB.NET version soon.
Basically, you choose a table and then a column for the Value and a Column for the Desc and it builds the enum. Here is the enum I built from the Northwind.Region table.
namespace MyProject
{
public enum Region
{
Eastern = 1,
Western = 2,
Northern = 3,
Southern = 4,
}
}
If you find a problem or need an enhancement uss the "Post a message" below.
|