Skip to content

Latest commit

 

History

History
38 lines (25 loc) · 1.79 KB

File metadata and controls

38 lines (25 loc) · 1.79 KB
title TOCTitle ms:assetid ms:mtpsurl ms:contentKeyID ms.date mtps_version ms.localizationpriority
Handler property (RDS)
Handler property (RDS)
aaf8c8c6-f95b-3cf3-b3f6-203f37464c87
48546962
09/18/2015
v=office.15
medium

Handler property (RDS)

Applies to: Access 2013, Office 2013

Indicates the name of a server-side customization program (handler) that extends the functionality of the RDSServer.DataFactory, and any parameters used by the handler.

Syntax

DataControl.Handler = String

Parameters

Parameter Description
DataControl An object variable that represents an RDS.DataControl object.
String A String value that contains the name of the handler and any parameters, all separated by commas (for example, "handlerName,parm1,parm2,...,parm N" ).

Remarks

This property supports customization, a functionality that requires setting the CursorLocation property to adUseClient.

The name of the handler and its parameters, if any, are separated by commas (","). Unpredictable behavior will result if a semicolon (";") appears anywhere within String. You can write your own handler, provided it supports the IDataFactoryHandler interface.

The name of the default handler is MSDFMAP.Handler, and its default parameter is a customization file named MSDFMAP.INI. Use this property to invoke alternate customization files created by your server administrator.

The alternative to setting the Handler property is to specify a handler and parameters in the ConnectionString property; that is, "**Handler=**handlerName,parm1,parm2,...;".