From: "s" Subject: Re: Can I Clear Another Block *Directly*? Date: 1997/11/11 Message-ID: <01bceef4$9ad1c180$95212299@default>#1/1 References: <345c8be5.5827663@news.netvigator.com> Newsgroups: comp.databases.oracle.tools,comp.databases.oracle,comp.databases.oracle.misc Hi, You cannot clear a block without navigating to that block and you cannot navigate to the block if you do not have a navigable item in that block. If a trigger prevents you from navigating out of a item, do the following: create a timer (when you want to navigate out of the item), in the when timer expired trigger, trap the timer expired event and issue a go_block('block_name'); Clear the block and navigate back to the item you started from. Santosh -- remove the words removeit from the e-m address ªü´ö Thenardier wrote in article <345c8be5.5827663@news.netvigator.com>... > > i have 2 blocks. When an item in Block1 is empty, i need to > clear Block2. I still don't know how to clear another block > directly (without going to Block2, in fact i can't go!) > The situation just like the code input is empty, i shouldn't display > the details about the code. > > Note: the triggers i'm using disallow me to go_block('other_blocks'). > Have tried clear_block('other_block'). No use in fact! > > Thanx very much. > > > Thenard >