A script-enabled browser is required for this page to function properly.

TOOL_RES.Rfhandle

Description

Specifies a handle to a file.

Syntax


TYPE Tool_Res.Rfhandle;

Example


/*
** This examples uses Tool_Res.Rfhandle
*/
PRODEDURE res_test IS
  /* Specify the handle ‘resfileh'. */
  resfileh   TOOL_RES.RFHANDLE;
BEGIN
  /* Assign handle to a resource file */ 
  resfileh := TOOL_RES.RFOPEN('C:/test.res');
  ...
END;