Kore Technologies  
Skip Navigation Links
 

 July 15, 2007  

EasyCo

Revelation Software

InterSystems

International Spectrum

  Conference Schedule
 
  Denver 2009
March 23, 2009 - March 26, 2009
 

Mar/Apr 2008

Mar/Apr 2008

Reality Triggers

Subscribe
  WASHINGTON BUSINESS JOURNAL PLACES DATATEL ON ITS BEST PLACES TO WORK LIST  

Datatel ®, Inc. announced that the Washington Business Journal has included Datatel on its "Best Places to Work 2007" list from a pool of over 300 corporate applicants. The Journal also ranked Datatel second of 15 finalists in the "Large Companies with Local Headquarters" category.

The award was presented June 7th during a breakfast ceremony at the Ritz-Carlton Hotel in Tysons Corner, VA. In addition to being recognized by the Washington Business Journal, Datatel has been designated a "Great Place to Work" by Washingtonian Magazine three consecutive times.

"We are thrilled and honored that Washington Business Journal has named Datatel one of the area's best places to work," said Susan Koch, Datatel director of human resources. "Datatel has worked hard at building a special and caring corporate culture over the years, and it's always great when the results of those efforts are acknowledged—especially by the local business media. We thank the Washington Business Journal for helping call attention to Datatel as a first-rate Washington employer."

One Datatel employee commented during Washington Business Journal's evaluation process, "Datatel has been a welcoming place to work. Its employee retention [rate] is phenomenal—just look at how many employees have been here over 20 years!"

Datatel has offices in Fairfax, VA, Buffalo, NY, and San Francisco, CA. Persons interested in employment opportunities at Datatel are invited to visit the "Career" area of the Datatel Web site at http://www.datatel.com


  Official release Winnix 2.30 Terminal Emulator  

After strong tests from Easy Soft and from resellers as well, 2.30 of Winnix Integrator release is now out for shipment.  This release will replace the delivery of former series 2.11.

Winnix 2.30 is the first official release completely designed by Easy Soft since it owns copyrights on Winnix. It is a major step in the life of this product. Of course, this release is full compatible with previous 32 bits releases.

New functionalities are great and here are some that might interest you:

  • Activation by internet
  • 3 ways to manage licenses to simply deployment
  • Increased compatibility with Citrix Metaframe
  • Keepalive
  • Dialog based file transfer
  • Windows Vista 32 and 64 compatibilities,
  • Personalization in the "About Winnix" box with information about there reseller, including website URL, address, and reseller's logo.

  MultiValue Jobs Available  

Execu-Sys, ltd - Positions Available

Experienced UNIDATA/SB+ contractors needed for multiple projects nationwide; any experience with Masterpack, Primac or Epicor software packages a major +. Rate dependent on project-some projects will allow for partial telecommute.

For additional information contact Matt Hart at (800)423-1964 x302 or mh@eslny.com


  XLr8Editor new release for Unidata and Universe  

U2logic is announcing the release 1.1.5.14 of XLr8Editor for Eclipse tool set.

  1. For Universe users we have added caching to speed up the loading of the files the second time through.  This is a clickable option on the preferences window option.
  2. We have a dictionary editor.  You can edit or delete dictionary items in a grid.   This means you can see the entire dictionary set without having to TCL command or the like.  The grid has sortable columns allowing many ways to view all dictionary items
  3. The U2 database licensing requirements to run the XLr8Editor have been reduced to a single user.

If you are not one of the over 1000 licensee's, you would need to know this product is total free.  Unlike some other editors, we are feature rich with a complete tool set.  XLr8 Tools and Environment consist of a robust editor, installer, resize tool, object editor, project editor and a web developer.  No other tool allows you to add many other plug-in from other manufactures of Eclipse based products.

This tool requires you to download from www.eclipse.org version 3.2.2 of the tool set.  Additional you would need to load from www.sun.com a Java JRE less than 6.0.  Currently, we do not support JRE from 6.0 above.  And finally from our web site, you can download the instructions to make this all work.


  New Release of MITS Report Boasts Impressive New Features and Functionality  

MITS , developer of Advanced Reporting and Business Intelligence software, is pleased to announce that MITS Report 1.1 is now available. This robust new release offers revolutionary usability, enhanced security, greater flexibility, and access to more detailed information. Gary Owen, MITS Vice President of Engineering and Product Development comments on the evolution of the product, stating "MITS Report 1.0 was the core expression of MITS' operational reporting concept and an opportunity to gather feedback from partners and end-users. The development process for version 1.1 was about taking that core experience and building on it to provide a truly innovative operational reporting tool."

Revolutionary Usability

MITS has added some of the most dynamic usability features available for reporting in this new release of MITS Report 1.1. Users now have the ability to move entire columns within their reports by simply dragging and dropping. This feature makes it easy for users of all skill levels to reformat reports to meet their specific needs.

Enhanced Security

With this release, MITS Report 1.1 accommodates row and column level security. More detailed security makes it possible to restrict the view of rows with particular values and columns as defined in a Report Source from Users based on their unique log-ins.

Greater Flexibility

Many of the noticeable improvements are seen in the increased flexibility of the product.

MITS Report 1.1 now allows:

  • The ability to email Microsoft Excel spreadsheets generated from reports to other MITS Report Users or external email addresses on a scheduled basis.
  • Report definitions to be imported and exported from MITS Report without their associated Report Source.
  • Data to be filtered using additional qualifiers, such as, "Empty" and "Is Not Empty" and text filtering supports "Begins With" and "Ends With" qualifier options.
  • The ability to selectively replace, add, or delete Report Source records.
  • Displayed data to be filtered using hidden columns.
  • MITS report to capture a new copy of a dictionary item before processing Report Source Updates when underlying expressions and headings used in a column changes during a batch or nightly update process.

  Tech Tip!  

UniVerse does not have a SYSTEM function to return the current spooler number. On other conversion projects we have written subroutines to execute SETPTR and capture the output. It is not a perfect solution because, unlike other platforms, UniVerse does not generate the spooler number when you do PRINTER ON; it generates it when you do the first actual PRINT statement.

This is what we do as well, far from ideal but we couldn't think of a better way.  Here is the subroutine that we use that does the job.

0001:       SUBROUTINE GET.SPOOLER.NUMBER.SUB(SPOOLER.NO,CHANNEL)
0002: * Purpose  : Return the current spooler number.
0003: * Note     : This needs to be run before the PRINTER CLOSE command or
0004: *          &nbs p; before the program returns to TCL
0005:       EQU SLASH TO '/'
0006:       EXECUTE "SETPTR ":CHANNEL CAPTURING OUTPUT
0007:       NO.OF.SLASH = DCOUNT(OUTPUT,SLASH)
0008:       SPOOLER.NO = FIELD(OUTPUT,SLASH,NO.OF.SLASH)
0009:       SPOOLER.NO = SPOOLER.NO[3,5]
0010:       IF NUM(SPOOLER.NO) AND SPOOLER.NO # "" THEN
0011:          SPOOLER.NO += 0
0012:       END ELSE
0013:          SPOOLER.NO = "ERROR"
0014:       END
0015: *
0016:       RETURN

comp.database.pick thread:

http://groups.google.com/group/comp.databases.pic k/browse_thread/thread/5d92aff132640ce7/4db9006e3ff398bb?#4db9006 e3ff398bb
 


Upcoming Webinars:

UniVerse Triggers
Thursday May 15, 2008 - 11:00AM PST / 02:00PM EST

Advanced MultiValue Basic Programming
Tuesday May 27, 2008 - 11:00AM PST / 02:00PM EST

UniVerse I-Descriptors
Wednesday May 28, 2008 - 11:00AM PST / 02:00PM EST

UniVerse Indexes
Thursday June 5, 2008 - 11:00AM PST / 02:00PM EST

MultiValue Basic Programming For GUI
Thursday July 3, 2008 - 11:00AM PST / 02:00PM EST

See All Scheduled Webinars

Career

Educational

Software

Vars

May 1, 2008

April 15, 2008

April 1, 2008

March 15, 2008

March 1, 2008

February 15, 2008

February 1, 2008

January 15, 2008

January 1, 2008

December 15, 2007

December 1, 2007

November 15, 2007

November 1, 2007

October 15, 2007

October 1, 2007

September 15, 2007

September 1, 2007

August 15, 2007

August 1, 2007

July 15, 2007

July 1, 2007

June 15, 2007

June 1, 2007

May 15, 2007

May 1, 2007

April 15, 2007

April 1, 2007

March 15, 2007

March 1, 2007

February 15, 2007

February 1, 2007

January 15, 2007

January 1, 2007

December 15, 2006

December 1, 2006

November 15, 2006

November 1, 2006

October 15, 2006

October 1, 2006

September 15, 2006

September 1, 2006

August 15, 2006

August 1, 2006

July 15, 2006

July 1, 2006

June 15, 2006

June 1, 2006

May 15, 2006

May 1, 2006

April 15, 2006

April 1, 2006

Skip Navigation Links
Home
Magazine
Conference
e-Xtra
Spectrum University
Resources
Contact Us
Copyright (c) 2006 International Spectrum   Terms Of Use | Privacy Statement