Skill:Q:find netname

Discussion in 'Cadence' started by Íõ³É³¬, Oct 14, 2003.

  1. Íõ³É³¬

    Íõ³É³¬ Guest

    hi
    I want to display find menu in schematic and set PropName natName automatic.
    This is my code:
    procedure(FindnetName()
    schHiFind();
    schSchFindForm-schFindPropNameCyclic->value = "netName"
    );procedure

    But when i run FindnetName() ,it stop at schHiFind().
    How i can run them together?


    Best regards
     
    Íõ³É³¬, Oct 14, 2003
    #1
  2. Íõ³É³¬

    suresh j Guest

    This is because the line schSchFindForm->schFindPropNameCyclic->value =
    "netName" gets executed only after you cancel the form. Inside a
    function if we have some code that displays a form, the code just next
    to that doesn't get executed till the form is Cancel-ed or OK-ed. I
    don't know how to change this behavior.

    In your case you can do,
    procedure(FindnetName()
    schHiFind("netName")
    );procedure


    rgds,
    Suresh J
     
    suresh j, Oct 14, 2003
    #2
  3. Íõ³É³¬

    suresh j Guest

    This is because the line schSchFindForm->schFindPropNameCyclic->value =
    "netName" gets executed only after you cancel the form. Inside a
    function if we have some code that displays a form, the code just next
    to that doesn't get executed till the form is Cancel-ed or OK-ed. I
    don't know how to change this behavior.

    In your case you can do,
    procedure(FindnetName()
    schHiFind("netName")
    );procedure


    rgds,
    Suresh J
     
    suresh j, Oct 14, 2003
    #3
  4. Íõ³É³¬

    ??? Guest

    And who have good idea?

     
    ???, Oct 15, 2003
    #4
Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments (here). After that, you can post your question and our members will help you out.