Forum Replies Created

    #86260

    Thank you for the reply sir, I guess you are suggesting me to check the export options of eye diagram such as “print to BMP” manually. But I am collecting dataset and I have to collect eye diagram images by varying many parameters and those will be over 1000 sweeps, and manually doing this is’nt possible for me sir. So I am kindly requesting help to automate the saving of eye diagram as images using component script or any other alternatives. Thank you.

    #86246

    Could anyone who is familiar with scripting help me pls. I’ve tried to write component script in eye diagram analyzer to autosave eye diagram as image during sweep. The script code I tried with is:
    Dim ThisComponent
    Set ThisComponent = GetThisComponent()
    Dim FSO3
    Dim resMgr3
    Dim res3

    Set FSO3 = CreateObject(“Scripting.FileSystemObject”)

    ‘Set resMgr3 = ThisComponent.GetGraphMgr
    Set res3 = ThisComponent.GetGraph(“Eye Diagram”)
    res3.Save “D:\EyeDiagram.bmp”

    I’m getting this error on running evaluate script.
    VB Scripting: ‘Microsoft VBScript runtime error’ Line: 64 ,Char: 0, ‘Object doesn’t support this property or method: ‘Save”