Hi
I was wondering if anyone could tell me how to set the source report on a new report view in C#
reportView rv = new reportView();
baseClassArrayProp bcap = new baseClassArrayProp();
baseClass[] bc = new baseClass[1];
nil nil = new nil();
stringProp tps = new stringProp();
tps.value = parentSearchPath;
nil.searchPath = tps;
bc[0] = nil;
bcap.value = bc;
rv.@base = bcap;
9 lines to set 1 value. nice