Sha256: 98861b7e743647fde71e4b364ca002231607c804d0c70d7a52b4cd0e723e899d

Contents?: true

Size: 496 Bytes

Versions: 3

Compression:

Stored size: 496 Bytes

Contents

   # this method views an existing  record
  def loadnoterecord
 
         require 'fileutils'

	      
        begin # exception trapped block
       
       
	      fileName =  @a_viewhypernote 
        
	      fd = File.open(fileName,"r")
	      @a_notedata =        fd.read
	      
        
	      
	      
	      
        fd.close
        rescue SystemCallError, StandardError
            $stderr.print "system call error: " + $!
        end # exception rescue

  end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
rwdhypernote-0.13 code/superant.com.hypernote/loadnoterecord.rb
rwdhypernote-0.15 code/superant.com.hypernote/loadnoterecord.rb
rwdhypernote-0.16 code/superant.com.hypernote/loadnoterecord.rb