Reading from text using forms6i file

Hello

I want to read from a text file in forms6i and must be displayed in a text element.
The code I wrote is now
declare
       in_file  Text_IO.File_Type;   
       linebuf  VARCHAR2(80); 
       helptextvalue varchar(1000);
begin 
     
     show_window('helpwindow');

       in_file := Text_IO.Fopen('c:\divya_forms\genhelp.txt', 'r');   
       loop
       Text_IO.Get_Line(in_file,linebuf);
       set_alert_property('alert1',alert_message_text,'linebuf '||linebuf);
       alno := show_alert('alert1');
       helptextvalue := helptextvalue || linebuf;
       set_alert_property('alert1',alert_message_text,'helptextvalue '||helptextvalue);
       alno := show_alert('alert1');
       
       Text_IO.New_Line; 
       end loop;
       
       EXCEPTION
            WHEN no_data_found THEN
                 :helptext := helptextvalue;
                Text_IO.Fclose(in_file);
       END;
       
The code above works, but I want an exact copy of what exists in the file.
as if the file contains data

Hi how are you
Yes I'm fine

I want the element of text having the same data.
Now, I'm getting - Hi How are youYes I'm fine
I want to display the "Yes I'm fine", in the new row, as in the file.
So, how can I do this

Pls help

Adkins,

Try adding the Chr (10) after reading each line.

Kind regards

Manu.

Tags: Oracle Development

Similar Questions

  • I need to replace a string in a text using BACK file.

    I need to replace a string in a text using BACK file. I can't do it manually because the file size is about 2 GB. Please suggest me a solution. Thanks in advance.

    Hi ArunVL,

    See the Microsoft article below and check if it helps.

    With the help of MS-DOS Edlin utility to edit text files

    http://support.Microsoft.com/kb/67706

  • read an AVI using "Binary file reading" vi

    My question is to know how to read an avi file using vi «The binary read»

    My goal is to create a series of small avi files using IMAQ AVI write framework with the mpeg-4 codec to long 2 seconds (up to 40 images in each file with 20 frames per second) and then send them one by one in order to create a video stream. The image has entered USB camera. If I read these frameworks using IMAQ AVI read framework then compression advantage would be lost if I want to read the entire file itself.

    I've read the avi file using "Binary file reading" with 8 bit unsigned data format and then sent to the remote end and save it and then post it, but it did not work. Later, I found that if I read an image using "Binary file reading" file with 8 bit unsigned data format and save it to local computer itself, the format should be changed and it would be unrecognizable. I'm doing wrong by reading the file format of number integer 8 bit unsined or should I have used other types of data.

    I'm using Labview 8.5 and Labview vision development module and module vision 8.5 acquisition

    Your help would be very appreciated.

    Thank you.

    Hello

    Discover the help (complete) message to "write in binary.

    "Precede the size of array or string" entry by default true, so in your example the data written to the file will be added at the beginning information on the size of the table and your output file will be (four bytes) longer than your input file. Wire a constant False "to precede the array or string of size" to avoid this problem.

    Rod.

  • Extraction of members in text using ODI files

    Hello

    We can use Outline Extractor to extract the Member Essbase or planning.

    Similarly, can we use ODI to extract members in Essbase or planning in a text file.

    E.M.P. version 111.1.2.0

    Thank you
    Sourabh.

    Hello

    Yes.

    Refer

    Extract data from Hyperion Planning
    ODI - adapter SUN: loading of the text data in the planning your application

    Thank you
    Fati

  • How to write to the file to plain text using adapter file

    Hi all

    We have an obligation to save the values of a certain variable to a file system in our workflow.

    We are able to save in xml format, but we need to text format,

    If I am selecting native format I get below error:

    Exception occurred when
    liaison has been invoked. Exception occurred during invocation of the JCA binding:
    "JCA Binding run 'Write' reference operations have to:
    Translation error. Translation error. The native message translation error
    format. Please ensure that the payload for the outbound interaction is consistent
    for the schema. ". The called JCA adapter threw an exception of resource.
    Please review the error message above carefully to determine a resolution.

    Please suggest how to achieve this

    TIA,

    Hello

    In order to write anything with the adapter, you need to define the structure of the payload by using NXSD. Please refer to: Assistant Creation of Native - Format 11 g Release 1 (11.1.1.6.3)

    You can choose to say defined and delimited by spaces or something.

  • How to read a text or html file

    I downloaded 3 books in html format and can see them, but can not open them.  I used a nextbook before it was a simple matter to type the name of the file, then type chapter and by selecting the app (browser) I wanted to use.

    I checked the manual and cannot find any info on playback.

    I have it.  The missing piece was the file manager. I discovered Astro and everything worked fine.

  • Loading data from text using ODI in planning

    Hi John,.

    Hope you do well...

    In your blog, more to life than that...: ODI - get the textual data in the planning of the, you mentioned to restart services to update the textual data, once it is loaded into the Cell_Text table. Is it always applies to the current version of planning. I have a requirement to load text data into Workforce Planning.

    Thank you

    Sravan

    Yes, you put combinations of members in the POV, it's the same concept that when you use the outlineload utility.

    See you soon

    John

    http://John-Goodwin.blogspot.com/

  • Line break when writing text using OutputStream file

    This seems to be a bit of a stupid question, but I am confused. I write a simple eventLog for my program that, at the present time, contains a few hexagonal channels. Since OutputStream has not an writeLine or writeln method, there is no innate line breaks, and they all appear on a single line. Pretty simple to fix... or so I thought. The line break character is rejected. I tried \n, \r, 0x0A, 0x0C, 0x0D, 0x1E,"(\n".getBytes), br = [] byte {/ * insert line break ratings here host * /}... Each is replaced by a small black box. How can I programmatically insert a line break in a .txt with OutputStream.write (*) file?

    Testing this on the generic "BOLD" 9000 Simulator.

    public void log (String entry)
      {
        //Circular Buffer logic
        if (eventLog.size () == 100)
        {
          eventLog.removeElementAt (0);
        }
    
        eventLog.addElement (entry);
    
        //TODO: Remove this
        flushLog ();
      }
    
      //Empty log to external file
      public void flushLog ()
      {
        FileConnection logWriter;
    
        try
        {
          logWriter = (FileConnection) Connector.open
                      ("file:///SDCard/BlackBerry/documents/log.txt",
                       Connector.READ_WRITE);
        }
        catch (IOException e)
        {
          //Debug
          System.out.println ("ERROR: File connection could no be created.");
          System.out.println (e);
    
          return;
        }
    
        try
        {
          try
          {
            if (!logWriter.exists ())
            {
              logWriter.create ();
    
              //Debug
              System.out.println ("Log Successfully created");
            }
          }
          catch (Exception e)
          {
            //Debug
            System.out.println (e);
          }
    
          //Debug
          System.out.println (logWriter);
          System.out.println ("Creating output stream...");
    
          OutputStream logOut = logWriter.openOutputStream ();
    
          //Debug
          System.out.println ("OutputStream successfully created");
    
          try
          {
            for (int count = 0; count < 100; count++)
            {
              //Debug
              System.out.println ("Log Write Loop: " + count);
    
              logOut.write (((String) eventLog.elementAt (count)).getBytes ());
    
              //test
              //byte [] br = {0x0A, 0x0C, 0x0D, 0x1E};
    
              String br = "\n";
              logOut.write (br.getBytes ());
            }
          }
          catch (ArrayIndexOutOfBoundsException e)
          {
            //Debug
            System.out.println ("Buffer not full");
          }
          catch (Exception e)
          {
            //Debug
            System.out.println (e);
          }
    
          logOut.close ();
        }
        catch (IOException e)
        {
          //Debug
          System.out.println ("Error writing event log: May be incomplete.");
          System.out.println (e);
        }
        finally
        {
          try
          {
            logWriter.close ();
          }
          catch (IOException e)
          {
            //Debug
            System.out.println ("Error closing log Stream");
            System.out.println (e);
          }
        }
      }
    

    Confused,.

    ~ Dom

    Windows, Notepad, whatever, expects CRLF for line breaks. \n gives you PMQ, which works very well on ' nix systems; \r\n is what you want. Clever Publishers to Windows will load of each convention, but not Notepad.

    BlackBerry probably isn't ' nix based. It's just a convention of line break.

  • Problem reading from a configuration file that was edited in Notepad

    Hi all

    When I try to read a configuration file (which was edited from Notepad) using OpenG (read INI Cluster) I get no output function. Debugging for the question I tried to read the same file using read from text file function. The result I got is as follows:

    See here: Config file "byte order mark"

  • Not able to read the text file several times - Bug?

    I open the Refnum to a text file by starting my software and I'll keep the file open until the software works. I read a text file when an event occurs. The problem that I'm facing here is when I read that the file 1st time Lily can't read the text of the file but when I read it to get even empty string only. Could someone help me understand why this happens.

    A race condition?  What's with the two readings at the same time?  Keep the opened file is not a problem, but remember that there is a file pointer.  If you read empty strings, it's probably because you're at the end of the file.  Use Set leader VI to set Position is for the beginning of the file.

  • Code snippet to read a text file

    Hello

    Can someone give me please the codesnippet to read a text in javascript file.

    var someFile = File('~/Documents/Foo.txt');
    someFile.open('r');
    var foo = someFile.read();
    someFile.close();
    
  • 'Create masks from text' in turn computer black screen

    I imported a ttf font in font book, then in the after effects CC and when I do the function 'create masks from text' using this text, the computer window becomes black and I am unable to read anything. The function still works with the indigenous texts well. Any ideas?

    Thanks a lot for your help. I finally thought to it. After having tried everything you said and more, I feel a little ridiculous. All I ended up having to do was to change the font type breathe I used one in distress to the solid. Works fine now. Thanks again!

  • File.Read () fails with the binary file

    It's annoying me like I thought it would be trivial (and according to the docs, quite possible).

    I open a tiff file, and I'm reading all data.  I put binary encoding after opening.heres my simple code:

    var file is File.openDialog ("select the file");. leader. Open ("r"); leader. Encoding = "binary"; Alert (file. Read());

    I use this file:

    https://area51.d4creative.com/cgi-bin/fastLink.cgi?LinkId=922 & starts 5162 = & keycode = 9tlpQ3dS

    my alert box says: MM if I open this file in a text editor, there is more data after MM.  What is the problem?  Extendscript really not correctly read binary data despite demand of textbooks he can?

    Mike Cardeiro

    If I do this way:

    {
    var myFile = File.openDialog ("Select binary file.");
    myFile.open ("r");
    myFile.encoding = "BINARY";

    var myChar, myByte;
    var i = 0;
    s = "";
    While (! myFile.eof) {}
    myChar = myFile.readch ();
    myByte = myChar.charCodeAt (0) m:System.NET.SocketAddress.ToString (16);
    If (myByte.length< 2)="" mybyte="0" +="">
    s += myByte + "";
    If (I %16 == 15) s += "\r";
    i ++ ;
    }
    myFile.close ();
    $.writeln (s);
    }

    That's what I get:

    2A of the 4 d 4 d 00 00 00 00 08 00 00 00 04 00 00 fe 0c
    00 01 00 00 00 00 01 00 00 03 00 00 00 01 00 04
    01 00 00 01 00 03 00 00 00 01 00 04 00 00 01 02
    00 03 00 00 00 03 00 00 00 9th 01 03 00 03 00 00
    00 01 00 01 00 00 01 06 00 03 00 00 00 01 00 02
    00 00 01 11 00 04 00 00 00 01 00 00 00 01 15 bc
    03 00 00 00 00 01 00 03 00 00 01 16 00 03 00 00
    00 01 00 04 00 00 01 17 00 04 00 00 00 01 00 00
    01 30 00 1 C 00 03 00 00 00 01 00 01 00 00 86 49
    00 01 00 00 00 18 00 00 00 00 00 00 00 00 08 a4
    00 08 00 08 38 42 49 4 d 04 28 00 00 00 00 00 0c
    00 00 00 01 00 00 00 00 00 00 3f f0 ff ff ff ff
    FF ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
    FF ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
    FF ff ff ff ff ff ff ff ff ff ff ff

    Dan

  • Paths of reading via the Config Ini file

    I was curious to know how one send or read from a configuration (.ini) file paths in LabVIEW. Any help is appreciated especially examples

    It's actually pretty simple...

  • On a PC using Windows and Adobe Reader, I sent 10 PDF files in a zip file and each label of the PDF file with a number from 1 to 10, so that they appear in the order I want. Numbered 1 to 9 records fell in sequence automatically, but number 10

    This is my first time using this forum. I hope that my question made its appearance and that this space is to respond to the answers possible, but just in case, here's my question again:

    On a PC using Windows and Adobe Reader, I sent 10 PDF files in a zip file and each label of the PDF file with a number from 1 to 10, so that they appear in the order I want. Numbered 1 to 9 records fell in the sequence automatically, but the number 10 appears under the number 1 instead of below the number 9. I googled the problem, do not see addressed. I called Microsoft, and they said it's a matter of Adobe. If anyone can help I would be grateful.

    Thank you.

    Not an Adobe issue at all. If you want your files to a single digit (1-9) to appear before the 10, you must add a zero at the beginning.

    01

    02

    03

    04

    05

    06

    07

    08

    09

    10

Maybe you are looking for