Closed Thread
Results 1 to 3 of 3

Thread: Doesn't write into the file

  1. #1
    G33k is offline Newbie
    Join Date
    Nov 2009
    Location
    Lithuania
    Posts
    19
    Rep Power
    0

    Doesn't write into the file

    I use FPS [ this one: FPS – About ] for pascal. I write this code, but it doesn't put number into the file, what's the problem?

    Code:
    program lalala;
      var 
    prad text;
    begin
      assign
    (prad'C:\Users\Tomas\Desktop\numbers.txt'); rewrite(prad);
      
    write(prad1)
    end

  2. CODECALL Circuit advertisement
    Join Date
    Always
    Location
    Advertising world
    Posts
    Many

     
  3. #2
    Join Date
    Jul 2006
    Posts
    16,491
    Blog Entries
    75
    Rep Power
    143

    Re: Doesn't write into the file

    You haven't closed prad. Also, it's likely that you are writing the binary value 1, so you may have to check it using a hex editor.
    Programming is a branch of mathematics.
    My CodeCall Blog | My Personal Blog

  4. #3
    G33k is offline Newbie
    Join Date
    Nov 2009
    Location
    Lithuania
    Posts
    19
    Rep Power
    0

    Re: Doesn't write into the file

    Quote Originally Posted by WingedPanther View Post
    You haven't closed prad. Also, it's likely that you are writing the binary value 1, so you may have to check it using a hex editor.
    Yes, you are right, I have to close it then it works, thank you.

Closed Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. [C#] Write text to the beginning of a file
    By PsychoCoder in forum Classes and Code Snippets
    Replies: 0
    Last Post: 08-26-2010, 04:21 PM
  2. [CharnyCoding - C#/XML] Write a XML file
    By Charny in forum Video Tutorials
    Replies: 0
    Last Post: 07-29-2010, 12:42 PM
  3. How To Write To a Text File
    By Hunter100 in forum C and C++
    Replies: 3
    Last Post: 03-25-2010, 01:40 AM
  4. Write To File - Should Work??
    By UnknownFear in forum Java Help
    Replies: 5
    Last Post: 03-07-2010, 09:24 AM
  5. Read / write file bit by bit
    By tomitzel in forum Java Help
    Replies: 0
    Last Post: 11-03-2009, 12:05 AM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts