Custom types
Posted: Mon Sep 04, 2006 7:14 am
When I create a variable in the report, I can only set the default .net types and not e.g. my own enum.
It is possible to define a variable like this in the designer:
private MyEnum MyVar;
where MyEnum is:
pulic enum MyEnum
{
One,
Two,
Three
}
Thanks a lot!
It is possible to define a variable like this in the designer:
private MyEnum MyVar;
where MyEnum is:
pulic enum MyEnum
{
One,
Two,
Three
}
Thanks a lot!