beautypg.com

2 ianalyzeradapter::attach, Ianalyzeradapter::attach – Teledyne LeCroy UWBTracer Automation Manual User Manual

Page 86

background image

LeCroy

UWBTracer Automation API Reference Manual

Manual Version 3.02

82

8.1.2 IAnalyzerAdapter::Attach

HRESULT Attach([in] IDispatch* pObj);


This method attaches LeCroy analyzer object to the adapter.

Parameters

pObj

Pointer to the LeCroy analyzer object to be attached.

Return values

Remarks

Only LeCroy analyzer COM servers can be attached to the adapter. If some other analyzer object was
previously attached to the adapter it will be detached by this call. When the analyzer object gets attached
to the adapter, a client application using the adapter becomes able to handle automation events fired by
the remote analyzer object through adapter

.

Example

VBScript:


classid=clsid:A0CB5386-38BA-4970-8782-3D1B707C3E5F>


...



WSH:

' Create LeCroy analyzer adapter first..
Set AnalyzerAdapter = WScript.CreateObject("CATC.AnalyzerAdapter", "Analyzer_")

'VBScript functioncreates object locally
Set Adapter = WScript.CreateObject("CATC.AnalyzerAdapter")

AnalyzerAdapter.Attach Analyzer ' Attach analyzer object to the adapter
Analyzer.StartRecording ( Analyzer.ApplicationFolder & "my.rec" )
...