Help for this page

Select Code to Download


  1. or download this
    VB:
    var1 = "abc" & var2
    ...
    
    Perl (Concatenation using join):
    $var1 = join('', 'abc', $var2);
    
  2. or download this
    VB:
    var = func(var1, var2, var3)
    ...
       $var2,
       $var3
    );
    
  3. or download this
    VB:
    stmt = "SELECT *" & _
    ...
         FROM table
        ORDER BY field
    ";