The if
in VB6 always executes the 2nd function even if the 1st is False
, C # does not execute the 2nd function if the 1st is already false.
How can I put vb6 running the 2nd function, only if the 1st is true?
C # code:
if(CalculoHora() && ValidaDados())
{}
VB6 Code:
if (CalculoHora and ValidaDados) then
end if