Current Category: Control Structures Posted by Elisha Control Structures on 01 19th, 2009 | 4 comments I am sure that more than one occasion have to use For's nested, are very useful for a lot of homework. Then I show a simple example that uses two nested For to represent the multiplication tables from one to ten. Creates a new ... Posted by Elisha Control Structures on 01 6th, 2009 | 8 comments The For Next make a repetition (loop) a certain number of times. You will maintain a variable that stores the value corresponding to the number of repetition. Dim i As Integer For i = 1 To 10 MsgBox ("Replay Number:" & i) Next Bookmark on Delicious Digg this ... Posted by Elisha Control Structures on 01 6th, 2009 | 8 comments The Select Case allows you to choose one of several choices / actions. Supogamos we have to perform a different task according to set type being processed proof (invoice, refer, credit note, etc). 'The data type of proof I take a' comboBox called comboComprobante Select ... Posted by Elisha Control Structures on 01 6th, 2009 | 3 comments The if statement is used to decide what action to take between two possible options. The structure is as follows: If <comprabación lógica> Then [Actions to be performed if the condition] Else [Actions to be performed without the condition is not met] ...