I have been play with Progress v9.1D and have created some .dll using ProxyGen. I have several DB tables to play with and I have passing data to a C# front end. One of the tables has some fields with extents. Here is a snippet of the code. I have done this now several times, but this is the first time with a table with extentions.
...
Cust.GetAllCustomer(proTT);
while(proTT.MoveNext())
{
row = (object[])proTT.GetRow(); - Errors right here on 1st row
al.Add(row.GetValue(40));
}
...
I am curious if anyone has done this with a table with extentions.
Thanks
...
Cust.GetAllCustomer(proTT);
while(proTT.MoveNext())
{
row = (object[])proTT.GetRow(); - Errors right here on 1st row
al.Add(row.GetValue(40));
}
...
I am curious if anyone has done this with a table with extentions.
Thanks