Date: Fri, 9 Jul 2010 17:02:16 -0400
Reply-To: Tom Abernathy <tom.abernathy@GMAIL.COM>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: Tom Abernathy <tom.abernathy@GMAIL.COM>
Subject: Re: SAS Communication with VB.Net Application Using Named Pipes
Kevin -
Try debugging with normal SAS statements and datasteps.
Then if you can get it to work you can try to figure out the FOPEN, FREAD
functions.
FILENAME IN .... ;
data _null_;
infile in lrecl=32767;
input;
list;
run;
- Tom
|