You know you're day's not off to a good start when...
-
You've been working at your new job using VB.Net for months now and you think you've gotten used to the weird syntax. And then this morning, you type the following codes
if ((var1 == 0) && (var2 == 1))
and then scream at the compiler for a minute because it won't compile... *sigh* I think I need more coffee.:zzz:
You can't stop the signal
-
You've been working at your new job using VB.Net for months now and you think you've gotten used to the weird syntax. And then this morning, you type the following codes
if ((var1 == 0) && (var2 == 1))
and then scream at the compiler for a minute because it won't compile... *sigh* I think I need more coffee.:zzz:
You can't stop the signal
Nick Seng wrote:
I think I need more coffee
I had the coffee just now. so i dont need another one now.
Regards, Satips.:rose:
-
Nick Seng wrote:
I think I need more coffee
I had the coffee just now. so i dont need another one now.
Regards, Satips.:rose:
-
You've been working at your new job using VB.Net for months now and you think you've gotten used to the weird syntax. And then this morning, you type the following codes
if ((var1 == 0) && (var2 == 1))
and then scream at the compiler for a minute because it won't compile... *sigh* I think I need more coffee.:zzz:
You can't stop the signal
Not having worked with VB enough to remember much of it, i doubt i have much (if any) say on that subject, but i can't tell what the problem would be since i can't see the variable declaration, or in what context this was used and what type of a variable this it...could be a string, a character or a boolean...could be missing quotes:sigh: Roswell
"Angelinos -- excuse me. There will be civility today."
Antonio VillaRaigosa
City Mayor, Los Angeles, CA -
Not having worked with VB enough to remember much of it, i doubt i have much (if any) say on that subject, but i can't tell what the problem would be since i can't see the variable declaration, or in what context this was used and what type of a variable this it...could be a string, a character or a boolean...could be missing quotes:sigh: Roswell
"Angelinos -- excuse me. There will be civility today."
Antonio VillaRaigosa
City Mayor, Los Angeles, CA -
-
it does look like C#, but i had nothing to compare that to since i've avoided VB for the most part:laugh: Roswell
"Angelinos -- excuse me. There will be civility today."
Antonio VillaRaigosa
City Mayor, Los Angeles, CA -
You've been working at your new job using VB.Net for months now and you think you've gotten used to the weird syntax. And then this morning, you type the following codes
if ((var1 == 0) && (var2 == 1))
and then scream at the compiler for a minute because it won't compile... *sigh* I think I need more coffee.:zzz:
You can't stop the signal
Nick Seng wrote:
You've been working at your new job using VB.Net for months now
I have?! AAAAAAAAAAHHHHHHHHHHHHHH!!!!!!!! HELP!!!! :((
:josh: My WPF Blog[^] FYI - Bob is a scarecrow who keeps Chuck Norris away from CodeProject.
-
You've been working at your new job using VB.Net for months now and you think you've gotten used to the weird syntax. And then this morning, you type the following codes
if ((var1 == 0) && (var2 == 1))
and then scream at the compiler for a minute because it won't compile... *sigh* I think I need more coffee.:zzz:
You can't stop the signal
Just the fact of coding in VB would be a bad start to any day.
-
You've been working at your new job using VB.Net for months now and you think you've gotten used to the weird syntax. And then this morning, you type the following codes
if ((var1 == 0) && (var2 == 1))
and then scream at the compiler for a minute because it won't compile... *sigh* I think I need more coffee.:zzz:
You can't stop the signal
I guess in VB.NET you use explicit 'and', 'or' instead of symbolic notations like '&&', '||'. Isn't it?
Vasudevan Deepak Kumar Personal Homepage Tech Gossips
-
I guess in VB.NET you use explicit 'and', 'or' instead of symbolic notations like '&&', '||'. Isn't it?
Vasudevan Deepak Kumar Personal Homepage Tech Gossips
-
Gawd I hate that! How do you know when it's an assignment or a comparison? How the hell does the compiler figure that out? I do this all the time.... varbool = var1 == var2; In VB, this would be... varbool = var1 = var2; ... which has a completely different meaning in both languages. Screwey.
"Quality Software since 1983!"
http://www.smoothjazzy.com/ - see the "Programming" section for freeware tools and articles.