-HMG 3.1.5 (Test) 2013/07/31
   - New Visual Effects on Windows (Contributed by Dr. Claudio Soto)
      - SET WINDOW cFormName TRANSPARENT TO nAlphaBlend  --> nAlphaBlend = 0 to 255 (completely transparent = 0, opaque = 255)
      - SET WINDOW cFormName [ TRANSPARENT ] TO OPAQUE
      - FLASH WINDOW cFormName CAPTION COUNT nTimes INTERVAL nMilliseconds
      - FLASH WINDOW cFormName TASKBAR COUNT nTimes INTERVAL nMilliseconds
      - FLASH WINDOW cFormName [ ALL ] COUNT nTimes INTERVAL nMilliseconds
      - ANIMATE WINDOW cFormName MODE nFlags INTERVAL nMilliseconds
      - ANIMATE WINDOW cFormName MODE nFlags (See Docs for various modes)
   - New Read Keyboard Functions (Contributed by Dr. Claudio Soto)  
      - HMG_GetLastVirtualKeyDown ( [ @hWnd ], [ @nMsg ], [ @wParam ], [ @lParam ] ) --> nVK_Code
      - HMG_GetLastVirtualKeyUp   ( [ @hWnd ], [ @nMsg ], [ @wParam ], [ @lParam ] ) --> nVK_Code
      - HMG_GetLastCharacter      ( [ @hWnd ], [ @nMsg ], [ @wParam ], [ @lParam ] ) --> cCharacter
      - HMG_CleanLastVirtualKeyDown ( [ lCleanAll ] )
      - HMG_CleanLastVirtualKeyUp   ( [ lCleanAll ] )
      - HMG_CleanLastCharacter      ( [ lCleanAll ] )
      - HMG_GetLastVirtualKeyName ( [ lParam ] ) --> cVK_Name
      - HMG_VirtualKeyIsPressed ( VK_Code )
      - GetKeyState ( VK_Code ) --> return nKeyState
      - HMG_SendCharacter ( [ hWnd ], cText )
      - HMG_EnableReadKey()
      - HMG_DisableReadKey()
   - New Handle: Form/Control property (To use in combination with Read Keyboard functions (Contributed by Dr. Claudio Soto)
      - Form.HANDLE           --> equivalent to: GetFormHandle ( cForm )
      - Form.Control.HANDLE   --> equivalent to: GetControlHandle ( cControl, cForm )
      - GetFormNameByHandle    ( hWnd, @cFormName,    @cFormParentName ) --> Return nFormIndex
      - GetControlNameByHandle ( hWnd, @cControlName, @cFormParentName ) --> Return nControlIndex
   - New Convert Unicode Value <=> Text (Contributed by Dr. Claudio Soto)
      - HMG_GetUnicodeValue ( cUnicodeText ) --> Return array { nCode1, nCode2, ..., nCodeN }
      - HMG_GetUnicodeCharacter ( { nCode1, nCode2, ..., nCodeN } ) --> Return cUnicodeText   
   - New in HFCL: HMG_Zebra Barcode Creation Function using hbzebra harbour contrib library and HFCL BosTaurus library. (Contributed by Dr. Claudio Soto and S. Rathinagiri)
      - HMG_CreateBarCode( cCode, cType, [nBarwidth], [nBarHeight], [lDisplayCode], [cPNGFileName], [aBarColor], [aBackColor], [lCheckSum], [lWide2_5], [lWide3] )
         - HMG_CreateBarCode() function can be used to create barcode image in png file format if cPNGFileName parameter is included. If cPNGFileName is omitted, the function returns the hBitMap handle of barcode.      
         - Any one of the following Barcode types is allowed. { "EAN13","EAN8","UPCA","UPCE","CODE39","ITF","MSI","CODABAR","CODE93","CODE11","CODE128","PDF417","DATAMATRIX","QRCODE" }
         - Checksum will be generated by library if omitted.
      - See sample in hfcl\samples\hmg_zebra folder
   - Updated to latest Harbour Nightly Build (2013-07-18)
   - Fixed bugs in various samples (Contributed by Pablo Csar)
   - Fixed and optimized HFCL: ComboSearchBox (Contributed by S. Rathinagiri)
      - Anywhere search not working in the first instance. 
-HMG 3.1.4 (Test) 2013/06/16
   - New function HMG_GetLanguage() --> Returns cLang  (returns the name ID of the language in which HMG shows messages - Eg.: "EN") (Contributed by Dr. Claudio Soto)
   - New Control level context menu (Contributed by Dr. Claudio Soto)
      - DEFINE CONTROL CONTEXT MENU cControlName [ OF | PARENT cParentName ]
      - DEFINE CONTROL CONTEXTMENU  cControlName [ OF | PARENT cParentName ]
      - RELEASE CONTROL CONTEXT MENU cControlName  OF | PARENT cParentName
      - RELEASE CONTROL CONTEXTMENU  cControlName  OF | PARENT cParentName
      - ReleaseControlContextMenu   (cControlName, cParentForm )
      - IsControlContextMenuDefined (cControlName, cParentForm ) --> Return lBoolean
      - SET CONTROL CONTEXTMENU  [ ON | OFF ]
      - SET CONTROL CONTEXT MENU [ ON | OFF ]   
   - New commands and functions for managing events (Please see DOC\data\HMG_UNICODE_DOC\Update_HMG_Unicode.htm for more details) (Contributed by Dr. Claudio Soto)  
   - New MARQUEE command for ProgressBar. Use this command when you do not know the amount of progress toward completion but wish to indicate that progress is being made. (Contributed by Dr. Claudio Soto)
      - SET PROGRESSBAR ControlName OF FormName ENABLE MARQUEE [ UPDATED MilliSeconds ]
      - SET PROGRESSBAR ControlName OF FormName DISABLE MARQUEE 
   - New AutoAdjust demo in samples\MainDemo\MAIN.AUTOADJUST (Contributed by Pablo Csar)
   - New DynamicMenu demo in samples\Menu\MENU_Dynamic_Demo) (Contributed by Dr. Claudio Soto)
   - New CueBanner demo in samples\controls\textbox\cuebanner (Contributed by S. Rathinagiri)
      - CueBanner works only in UniCode version and Windows Vista and above.
   - New QHTM library in HFCL (Contributed by Pablo Csar)
      - QHTM.dll is needed at run time. (included in HFCL\samples\QHTM)
      - QHTM can not be used in a commercial product unless you have purchased a licence
   - Enhanced Image Control (Contributed by Dr. Claudio Soto)
      - Now is possible to automatically load an image at its original size.
      - Added properties:
        - TRANSPARENT lValue
        - BACKGROUNDCOLOR aRGBcolor
        - ADJUSTIMAGE lValue
        - TRANSPARENTCOLOR aRGBcolor   
   - Enhanced PutFile() function: (Contributed by Dr. Claudio Soto)
      - New parameters: cDefaultFileName and @cExtFile
      - Remember, if:
        cExtFile := NIL ---> Not set selected file extension (traditional behavior)
        cExtFile := "" ---> Sets the file extension selected by the user   
   - Updated IDE-Unicode: Now supports the Unicode character set and allows at runtime change the language (Contributed by Dr. Claudio Soto)
   - Updated to latest Harbour Nightly Build (2013-06-15)
   - Changed default IDE to Unicode version. Ansi IDE is suitably included in IDE_ANSI folder.
   - Changed structure of samples folder and introduced various sub-folders by categories.
   - Fixed Build.bat in samples folder/subfolders. Now it is possible to call build.bat from any level of sub-folders.
   - Fixed Build.bat in hmg main folder to delete the file init.cld. (Contributed by Pablo Csar)
   - Fixed ComboSearchBox in HFCL. Now the listbox bottom is correctly shown. (Contributed by Dr. Claudio Soto) 