Topic: Macro VEDIT Search_Block (1 of 3), Read 45 times
Conf: VEDIT Macro Library
From: GIDROL antoine
Date: Thursday, February 27, 2003 03:37 PM

hello, i try to make :

#11 = Search_Block(">",Cur_Pos,EOL_Pos)

and i want to test the answer with #11

but he stop the macro execution,
and write me "CAN'T FOUND : >"

what can i do if i don't wan this message,
and that the macro continue ????

thinks

Antoine

 


Topic: Re: Macro VEDIT Search_Block (2 of 3), Read 50 times
Conf: VEDIT Macro Library
From: Fritz Heberlein
Date: Thursday, February 27, 2003 03:48 PM

> hello, i try to make :
>
> #11 = Search_Block(">",Cur_Pos,EOL_Pos)
>
> and i want to test the answer with #11

Try

#11=SEARCH_BLOCK(">",Cur_Pos,EOL_Pos,NOERR+COUNT,ALL)

Make sure that your edit position is at block begin.

Cheers,

Fritz

 


Topic: Re: Macro VEDIT Search_Block (3 of 3), Read 52 times
Conf: VEDIT Macro Library
From: GIDROL antoine
Date: Thursday, February 27, 2003 04:27 PM

ok thinks a lot.