Basically like with VB3 you can use template conditionals instead.
Rather than delete the code from the top just copy it to the bottom location.
Now you need to surround both in template conditionals, just like VB 3.x
However a VB 3 conditional looks like:
Code:
<if condition="code...">
code
</if>
VB4 conditionals just have vb: added before the if:
Code:
<vb:if condition="code...">
code
</vb:if>
That's the only change you make.