Month: October 2010

  • Color compromiser – 256 bit to 16 bit

    256 colors are not necessary required in most cases. Enter 6 digits (256bit) color code and check out the outcome in 3 digits (16bit). If the difference is acceptable, you can save 3 characters every time a color is used. Type Code Preview 256 bit Color # 16 bit Color #

  • How to create database in Microsoft SQL Server Express 2008

    Below are steps to create IntegraXor database in Microsoft SQL Server Express 2008, replace “project_id” with desired name in the steps: Create a folder for database storage, for instance “c:\ecava\database\project_id”. Execute the following script in SQL Server Management Studio to create the database: USE [master] GO CREATE DATABASE [project_id] ON PRIMARY ( NAME = N’project_id’, […]

  • IntegraXor 3.5.3900.10 dated 08 Oct 2010 Change Log

    Updated front-end Alarm Viewer for faster loading over slow Internet connection. Updated minor section of documentation. Fixed stability issue for specific add-in module.

  • Function, Object, Status.

    Recently we found that Firefox has changed the type of object of a function. Below is the test code: <DOCTYPE HTML> <html xmlns=”http://www.w3.org/1999/xhtml”> <head> <title>FX function status test</title> </head> <body> <script type=”text/javascript”> function hello() { this.hello = “hello”; this.world = “world”; this.status = “status”;   var txt = this.constructor; txt += this.hello + ” ” […]