I am taking a class in college, and they are teaching Visual Basic. I was wondering if you guys knew about this language, and I would like to know what your thoughts are about Visual Basic.
Thank You
I know Visual Basic. I worked with Visual Basic for about 2 years. My thoughts: Avoid.
There were already three Visual Basic threads in the list. Why, exactly, would you need to start another one?
trollget
this thread is on a roll
I've never heard of Visual Basic.
freebasic or gtfo
I know visual basic, and am learning vb.net now. really great language, it combines the essence of C++ and javascript to make a very nice and easy language to follow. the forms are easy to make and easy to assign. that and besides for that fact its easily linkable w/ all windows apps.
i love the language...just post here again if you need help w/ it.
>combines the essence of C++ and javascript
flawless victory. can we get a sticky up in here.
>combines the essence of C++ and javascript
What?!
Erm... no, it does not. Avoid. Highly unstable.
> can we get a sticky up in here.
No, and you never will. It is not the job of the admins to control the flow of conversation.
And it is not the job of the posters to comprehend sarcasm, apparently.
you can make the language do anything you want, if you know how to program it to do so... its microsoft, so why shouldn't they put in direct relations to their software. that's why it's worth learning in the first place
I don't particularly care either way about the syntax and semantics of Visual Basic and its descendant.
I do care about the dependencies of software I write. The fewer, the better. I waste enough hours of my life writing software, so I'd rather not see the result suffer from accelerated bit rot.
This or that, I make my living with asp.net
It took me fucking 2 hours to make something php style. Only 10 minutes in vb.net.
Boss can't wait 2 hours sometimes.
I know all about Microsoft Visual Studio 6.0 aka VB6, if you'd like any help then simply email me at h4x0r1f1c@gmail.com
For a program example: http://www.megaupload.com/?d=S71B5CEV
>>15
Are you sure it didn't take you FUCKING 100 MINUTES?
>>17
it was over NINE THOUSANNND
>>19 sage next time please
why? is it so there's no ID?
>>1
my opinion of pre-.net vb is not so great. i don't the quirks and inconsistencies of the language and standard apis. i find vb.net to be more syntatically consistent and a suitable language to work with if it was required but i wouldn't choose to use if i got to choose a language.
>>21
so the thread isn't bumped to the top of the page.
ADMIN/MOD please delete post 16. I don't want to have my email on here anymore when I search it over google.
>>23
maybe you should think before you post.
Lol, great idea.
It is also a widsom for your life. Think before you do something.
Bitches don't know about my Visual Basic.
VB is slow and crappy, but big companies love it, so if you want a job writing crappy software, VB might be for you.
Once I had to use VBA in Excel to process 15000 rows of data. Basically, each row had either a W or an L in it and I had to determine the longest streaks of W and L. Maybe there's a better way to do it (I don't think so), but my solution, which was to loop through the data (once) and check if the data was W or L, keep track of the current streak and update a variable "Max Streak" if a new maximum was obtained, took about 2 minutes to run.
I'm sure C, Perl, Php or almost anything else could have done it in a second or two tops.
2 minutes lol.
Assume these rows where a string (written on post)
int maxstrike(const char *rows) {
int max, cur;
for(max = cur = 0; *rows != 0; rows++) {
if(toupper((unsigned char)*rows) == 'W') {
if(cur < 0) {
if(abs(cur) > abs(max)) max = cur;
cur = 0;
}
cur++;
}
else if(toupper((unsigned char)*rows) == 'L') {
if(cur > 0) {
if(abs(cur) > abs(max)) max = cur;
cur = 0;
}
cur--;
}
}
return max;
}
Returns a negative value of L's for L and positive for W
Example, if we have WWWLLLL it will return -4 and for WWL 2.
Ignores anything other than WwLl
vb is the nigger of programming languages. all the big companies claim to love it for equal-opportunity purposes, but nobody really wants to get to involved.
there's a good reason MS is deprecating vb- in favor of vb.net or vba.
Visual Basic = AIDS
Visual Basic = WIN!
Plus money for gas.
>>1
I know enough to stay away from it.
This thread is now a candidate for permasaging.