Wait for "Reframe On" before executing the next part of code
Wait for "Reframe On" before executing the next part of code
(OP)
How can I wait for "Reframe On" before executing the next part of code?
CODE -->
CATIA.StartCommand ("Reframe On") 




RE: Wait for "Reframe On" before executing the next part of code
Check timer... but you dodn't specify, your code is cat.... ?
Regards
Fernando
https://picasaweb.google.com/102257836106335725208 - Romania
https://picasaweb.google.com/103462806772634246699... - EU
RE: Wait for "Reframe On" before executing the next part of code
My code is in CATScript on PC in this case. I'm curios if I will be able to do it to work also for Unix.
CODE -->
'Timer Dim time1, time2 time1 = Now time2 = Now + TimeValue("0:00:01") Do Until time1 >= time2 'DoEvents CATIA.RefreshDisplay = True time1 = Now() Loop