UD 4.6 Released
The UNIVERSAL DRIVER 4.6 is officially released. The UD 4.6 will now be offered in two versions. The free bundled version supplied with OpenInsight 9.0 and above network user licenses (NUL) and the standard version to be used with OpenInsight 8.0.x and below as well as Advanced Revelation. The free (NUL) version supplied with OpenInsight 9.0 and above will not work with previous versions of OpenInsight or Advanced Revelation.

The Universal Driver 4.6 replaces the Universal Driver 4.5. The UD 4.6 provides backward compatibility with all previous versions of Linear Hash files and includes a console application (the LH Manager) that allows you to manage record locks without having to stop the Linear Hash Service.

The price for a new install of the Universal Driver 4.6 for use with OpenInsight 8.0.x and below and Advanced Revelation is $1,995.00.

Upgrade pricing is as follows:

From Universal Driver 4.0 and Universal Driver 4.5 to Universal Driver 4.6 is free. (Shipping and handling charges apply).

From Universal Driver 3.0 to Universal Driver 4.6 is $595.00.

From Revelation 2.1 Service to Universal Driver 4.6 is $795.00.

From Revelation 1.5 Service to Universal Driver 4.6 is $995.00.

Please contact our Customer Care Department at 800-262-4747 to request your upgrade.

OpenInsight 9.1 in Beta Testing
Yes, that's 9.1 and not 9.0.1. After much deliberation we have decided that this next release of OpenInsight includes much new functionality and not just patches. These new enhancements to the product have delayed it's official release. OpenInsight 9.1 is now in beta testing and will most likely be officially released by August 1, 2009. For a complete list of product enhancements including the ability to create graphical menus download the Readme.pdf. Below is a sample of the the new graphical menus:

REVELATION USERS CONFERENCE 2010
Mark your calendars! The REVELATION USERS' CONFERENCE will be returning to the Rio All-Suite Hotel and Casino in Las Vegas, Nevada. The conference dates are Tuesday, April 27th - Friday, April 30th, 2010.

SCHOOL'S OUT FOR SUMMER SPECIAL
Celebrate the end of the school year by registering for our Fall Classes. Enroll in an OpenInsight Development Course during the months of July and August 2009 and bring a co-worker along for free! That's right for FREE! All classes must be completed by December 31, 2009. This offer expires on August 31, 2009. Please contact our Customer Care Department at (800) 262-4747 to register. New to the schedule is An Introduction to WebOI. This course covers all aspects of WebOI from configuration to programming over a two day period. Click here for our FALL Class schedule.

TECH TIPS
Did You Know…
That you can send a fax from Basic+ using the RTI_SendFax function in OpenInsight 9.1 and above. Below is an example of how to use this function.

Declare Function RTI_SendFax
ReceiverFax = "+(555)555-5555"
ReceiverName = "Warren Johnson"
Subject = "A Fax from OpenInsight's "
Subject:= "RTI_SendFax"
Note = "This is a test fax" : @vm 
Note:= "from the" : @vm : 
Note:= "RTI_Sendfax command"
CoverPage = ""
HostFile = ""
ItemName = "c:\revdotnet.txt"
SenderName = ""
SenderEmail = "This email address is being protected from spambots. You need JavaScript enabled to view it."
SenderFax = "201 722-9815"
FaxServer = ""
SendFax_Status = ""
JobID = RTI_SendFax(ReceiverFax, ReceiverName, Subject, Note, CoverPage, | HostFile, ItemName, SenderName, SenderEmail, SenderFax, FaxServer, | SendFax_Status)
If jobId Else
* Error Handling
end