o1110010
Registered User.
- Local time
- Today, 15:07
- Joined
- Mar 6, 2004
- Messages
- 182
Just a wandering thought, not too terrible or requiring an answer.
In C/C++ this logic works:
int a, b, c;
c = 0;
a = b = c + 1;
printf("A equals %d B equals %d C equals %d", a, b, c);
the output would be "A equals 1 B equals 1 C equals 0"
is there any way VBA can be manipulated to do the same thing (as what's in bold) besides seperate lines?
In C/C++ this logic works:
int a, b, c;
c = 0;
a = b = c + 1;
printf("A equals %d B equals %d C equals %d", a, b, c);
the output would be "A equals 1 B equals 1 C equals 0"
is there any way VBA can be manipulated to do the same thing (as what's in bold) besides seperate lines?