
Counsel should keep in mind that reasonable attorneys may disagree on the best way to proceed when an unanticipated situation arises.

Topics covered include how to deal with difficult opposing counsel and witnesses and what to do when witnesses do not show up to the deposition, assert their Fifth Amendment right not to answer questions, or lie under oath. Thank you to our friends and TIPS sponsor, Thomson Reuters, for sharing this article with us.Ī Practice Note, excerpted for use in this newsletter, that explains how a deposing attorney should handle unexpected situations that threaten to disrupt a deposition. For more information on Practical Law Litigation, visit their website. After the condition becomes false, the For Loop terminates.įor i = 0 to a Step 2 'i is the counter variable and it is incremented by 2ĭocument.Practical Law Litigation is a trusted resource for up-to-date developments in the law. If it is true, the loop executes and the process repeats itself (body of loop, then increment step, and then again condition). It is updated based on the step counter value. This statement allows you to update any loop control variables. If it is false, the body of the loop does not execute and flow of control jumps to the next statement just after the For Loop.Īfter the body of the for loop executes, the flow of control jumps to the Next statement. If it is true, the body of the loop is executed. This step allows you to initialize any loop control variables and increment the step counter variable. Here is the flow of control in a For Loop − The syntax of a for loop in VBScript is −įor counter = start To end A for loop is a repetition control structure that allows a developer to efficiently write a loop that needs to execute a specific number of times.
