d2jsp
Log InRegister
d2jsp Forums > Off-Topic > Computers & IT > Programming & Development > Visual Basic Essentials > Assignment
Add Reply New Topic New Poll
Member
Posts: 1,182
Joined: Aug 21 2008
Gold: Locked
Trader: Scammer
Warn: 20%
Feb 11 2013 08: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.
Member
Posts: 32,925
Joined: Jul 23 2006
Gold: 3,804.50
Feb 12 2013 11:40am
Do you need actual help or are you just blogging your progress?
Member
Posts: 3,936
Joined: Apr 29 2011
Gold: 1,473.50
Mar 4 2013 05:08pm
Quote (Synikul @ Feb 12 2013 12:44pm)
I'm writing code for a program in my college class

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".


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?
Member
Posts: 7,216
Joined: Sep 24 2008
Gold: 49,618.00
Mar 12 2013 01:18am
Quote (carteblanche @ 13 Feb 2013 02:40)
Do you need actual help or are you just blogging your progress?


LMAO

blogging i guess
Member
Posts: 15,717
Joined: Aug 20 2007
Gold: 481.00
Mar 14 2013 12:53pm
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
Member
Posts: 13,425
Joined: Sep 29 2007
Gold: 0.00
Warn: 20%
Mar 14 2013 01:12pm
Quote (t9x @ Mar 14 2013 02:53pm)

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.


im pretty sure C# is used more than VB lol...
Member
Posts: 15,717
Joined: Aug 20 2007
Gold: 481.00
Mar 14 2013 03:36pm
Quote (AbDuCt @ Mar 14 2013 03:12pm)
im pretty sure C# is used more than VB lol...


No, if you count every Small Business in the world, which greatly outnumber large business', they all use VB .NET for their programs/client software. It uses less space then C#, and it is a lot easier to write programs in.

I fluently know VB, ASP, C/++/#, F#, JS, Jquery, and PHP. In my experience, most of the things that I need done, can be done easiest in VB .NET. Even with websites, I do most of the actual coding in VB .NET over ASP. It's just easier. It's literally like writing out what you want done, perfect pseudocode.
Member
Posts: 32,925
Joined: Jul 23 2006
Gold: 3,804.50
Mar 14 2013 05:20pm
hmm i've found that groovy usually gets stuff done with the least amount of code, and python is the most intuitive to write in. just based on my limited experience. the most annoying part of groovy for me was the lack of IDE support. maybe they've improved since then, i dunno. i first heard of groovy when i was doing xml. the ability to do that without a POJO (like xstream requires) was really cool.

i remember when i learned vb, arrays started at index 1. really annoyed me. but i think they changed to be index 0 with .net

This post was edited by carteblanche on Mar 14 2013 05:25pm
Member
Posts: 11,610
Joined: Oct 28 2008
Gold: 1,795.00
Mar 14 2013 11:09pm
Quote (t9x @ Mar 14 2013 04:36pm)
No, if you count every Small Business in the world, which greatly outnumber large business', they all use VB .NET for their programs/client software. It uses less space then C#, and it is a lot easier to write programs in.

I fluently know VB, ASP, C/++/#, F#, JS, Jquery, and PHP. In my experience, most of the things that I need done, can be done easiest in VB .NET. Even with websites, I do most of the actual coding in VB .NET over ASP. It's just easier. It's literally like writing out what you want done, perfect pseudocode.


I would say overall c# is used in more applications/programs than vb.net, it is by far the easiest language I've ever used, except I'm used to typing if statements with a capital I from vb, that's really annoying.
Go Back To Programming & Development Topic List
Add Reply New Topic New Poll