TEXT_IO.GET_FILE() [message #647447] |
Thu, 28 January 2016 02:24 |
|
shawaj
Messages: 89 Registered: January 2016
|
Member |
|
|
HII
I HAVE WRITTEN SOME CODE TO READ DATA FROM A TEXT FILE BUT THERE IS SOME PROBLEM
FORMS DOES NOT RETURN ANY ERROR .CAN ANY ONE HELP ME,ITS GOES DIRECTLY AT END AFTER MESSAGE('70')
BEGIN
File_Handle:=TEXT_IO.FOPEN(V_FILE_NAME, 'R');
LOOP
MESSAGE('70');PAUSE;
text_io.get_line(file_handle,str_data);
END LOOP
END
|
|
|
|
|
Re: TEXT_IO.GET_FILE() [message #647452 is a reply to message #647450] |
Thu, 28 January 2016 09:15 |
cookiemonster
Messages: 13963 Registered: September 2008 Location: Rainy Manchester
|
Senior Member |
|
|
I assume the Declare section exists but has been left out of the post, otherwise it just wouldn't compile.
The OP does really need to post it
|
|
|