Sha256: 7d0059dc9770f3338d9aa0b578ec9ae347405fdc58a43866c9dbdd2ed02b6807

Contents?: true

Size: 548 Bytes

Versions: 3

Compression:

Stored size: 548 Bytes

Contents

   # this method views an existing address record
  def loadnoterecord
 
         require 'fileutils'
        @a_eventfilename = $currenteventtext
	      
        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.11 code/superant.com.hypernote/loadnoterecord.rb
rwdhypernote-0.09 code/superant.com.hypernote/loadnoterecord.rb
rwdhypernote-0.10 code/superant.com.hypernote/loadnoterecord.rb