Hi all, I have been tasked with opening and reading xpt files in C#. Using code similar to this has worked great so far: var tf = new TransportFile(@"x:\temp\shoes.xpt");
var x = tf.Datasets; However, when accessing the tf.Datasets[0].Data.Rows, this only ever finds the first 100 rows of data. Does anyone know why this could be and a way to fix this? I know for a fact there are more rows with the particular file that I am opening. The version of SAS.UV.Transport is based on SAS Universal Viewer version 1.5. Thank you in advance! Adam
... View more