COMPUTERSCIENCERESOURCES.NET

VB doesn’t require you to declare at the beginning of a module, program or function – but it is good practice to do so. Module Module1. Sub Main() Dim Number1, Number2, sum As Integer. End Sub. End Module. Note the use of the keyword DIM at the beginning. Then it is the variable names followed by AS then the type itself. The Assignment ... ................
................