|
Been there done that Tom. A simple data _null_ step such as the one that
you provided appears to hang waiting on input. No useful warnings or error
messages.
----- Original Message -----
From: "Tom Abernathy" <tom.abernathy@GMAIL.COM>
To: <SAS-L@LISTSERV.UGA.EDU>
Sent: Friday, July 09, 2010 16:02
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
>
|