Sha256: 37fef2d7bff7ffe0957e9aa121663d6dab2ccc98377b7c9892405279254245a2

Contents?: true

Size: 503 Bytes

Versions: 1

Compression:

Stored size: 503 Bytes

Contents

   # this method views an existing address 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

1 entries across 1 versions & 1 rubygems

Version Path
rwdhypernote-0.12 code/superant.com.hypernote/loadnoterecord.rb