Skill:Q:find netname

Í

ÍőłÉłŹ

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
 
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

ÍőłÉłŹ wrote:
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
 
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

ÍőłÉłŹ wrote:
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
 
And who have good idea?

"suresh j" <sureshjeeva00@yahoo.com> ???? news:3F8B8E15.4080504@yahoo.com...
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

ÍőłÉłŹ wrote:
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
 

Welcome to EDABoard.com

Sponsor

Back
Top