Sha256: 0c1b4922484bb0934ab76430960927860b54e644b2d8cab698c30d585869cbc3

Contents?: true

Size: 667 Bytes

Versions: 2

Compression:

Stored size: 667 Bytes

Contents

  # this method adds a new address record
  def saverwddialogconfiguration
   require 'fileutils'

   
   newname = "rwdwdialogmap.cnf" # grab the filename to create
   newdata = @a_diaconfigurationfile
   
	  
        begin # exception trapped block
          fileName = File.join( ConfigurationDir, newname )
        	fd = File.open(fileName,"w")
	        fd.print(newdata) # save the record info to the file
	        fd.close
          @newconfigurationresult=newdata # show the record info in the browser
        rescue SystemCallError, StandardError
            $stderr.print "system call error: " + $!
        end # exception rescue
    
  end

Version data entries

2 entries across 2 versions & 2 rubygems

Version Path
rwddialogmap-0.02 code/superant.com.dialogmap/saveconfigurationrecord.rb
rwdhypernote-0.16 code/superant.com.dialogmap/saveconfigurationrecord.rb