Quote (Synikul @ Feb 11 2013 10:44pm)
I'm writing code for a program in my college class, Its in my book.
I'm in visual studio 2010 and to be honest, I need to learn this shit faster.
Like strings, if statements, parse, and how to do integer adding, dividing, multiplying, subtracting, etc.
I'm pretty much making buttons, text boxes, labels, its like a "Auto Sales tool for coming up with the cost of the estimate cost of the services".
I'll be posting more information, on my progress.
1 moment.
strings;
Code
Dim strText as String = "suck me"
strText = strText + " please"
TextBox1.Text = strText
if statement;
Code
If strText.Text = "suck me please" Then
strText.Text = "No"
Else
strText.Text = "Yes"
End If
parse; I never use parse really, its pretty useless these days unless you are doing some serious shit. here is an alternative
Code
strText = 1
cInt(strText) + 1
TextBox1.Text = cStr(strText)
Enjoy.
Quote (lotsofhats @ Mar 4 2013 07:08pm)
think im taking the same type of class as you.
ive got some programming history but not with this VB shit, imo its a horrible shit language that i know nothing about (use to use c++, php, css etc as a hobby).
cracked 2010 vb studio and just about to start Q1 which is pretty much simple math conversions \=
perhaps our progress can somehow help each other?
VB .NET is the most used language in the business world because it is so easy to learn, and can do so many things. If you used C++, then why are you even learning VB? And if you DID use C++, you should have no problem learning or using VB, its literally almost the exact same thing.
This post was edited by t9x on Mar 14 2013 12:55pm