Question:
Best plalce to learn programming language such as VB.Net?
BabyCham
2007-05-07 16:10:16 UTC
Can anyone please advice me on where would be the best place to train up in VB.net? College? Uni course? Computeach? Learn Direct? On your own through reading books? the internet? or somewhere else?

Ideally I feel a good tutorial software would be best. Does anyone know where I can get hold of something like this?

Where do most programmers who did not grauate in a computer related discipline get their skills from? I can never find an employer willing to train you up.

I have worked for five years in VB6 then took three years out and wish to return to the world of programming. But technology has moved on. VB6 is dead and replaced by VB.net. HELP!
Six answers:
Shaifu
2007-05-07 16:20:03 UTC
Not any coolege or not any University. Directly Go To Microsoft to learn Vb.net.

see the site for registration.

Noone can teach you like the core team of microsoft .

and directly can go for certification. colleges and universities have almost their own syllabus . better go to

http://www.microsoft.com/learning/mcp/mcsd/requirementsdotnet.mspx



see tutorials at



http://msdn2.microsoft.com/en-us/vbasic/default.aspx(Best)

http://www.homeandlearn.co.uk/NET/vbNet.html

http://www.devarticles.com/c/b/VB.Net/

http://www.dotnetspider.com/

http://www.imt.net/~joe/matt/program/vb/Tutorials/
spriggs
2016-10-04 16:57:58 UTC
I ought to put in a plug for an exceedingly severe point language, python. Python has an exceedingly sparkling syntax like this: def double(x):     return x + x It has record comprehensions: myList = [double(i) for i in variety(5)] # myList is now [0, 2, 4, 6, 8] To do an identical ingredient in Java: public classification occasion {   public static void considerable( String [] argv ) {     static int double( int x ) { return x + x; }     ArrayList myList = new ArrayList();     for( int i = 0; i < 5; i++ ) {       myList.upload( double(i) ); } } lots extra typing. Python helps nameless purposes, and mapping operations: myList = map(lambda x: x + x, [0, a million, 2, 3, 4]) # myList now's [0, 2, 4, 6, 8] The "lambda x: x + x" skill "make me a function that takes x and doubles it, yet i do no longer care what it relatively is termed." Then the "map" says "take that function that I merely made up and keep on with it to all the products of the record '[0, a million, 2, 3, 4]' in turn." there is not any Java equivalent. i ought to write the sum of squares like this: sum( map(lambda x: x * x, [a million, 2, 3]) ) # this returns a million^2 + 2^2 + 3^2 = a million + 4 + 9 = 14 As a earnings, you ought to use Jython (listed under) to *assemble* python into Java bytecode, so everywhere which you would be able to run Java you may write your software in python and then have it run on the Java digital device.
anonymous
2007-05-07 16:19:24 UTC
You CAN learn it on your own - But doing a proper course or degree or whatever will learn you what you really need to know - Not programming but Development Life cycles, correctly annotating your code, working in a team, specifications blah blah
anonymous
2007-05-07 16:16:41 UTC
on your own. get a book instead of 1500 for 1 course in college.
anonymous
2007-05-08 00:12:39 UTC
If you want to learn VB 6 . This website will help you



http://www3.webng.com/tutes
anonymous
2007-05-07 16:16:35 UTC
u can dowload visual studio express from microsoft for free.... and see www.lynda.com for teaching materials.... then exercise exercise, and more exercise.... see practical solutions..... open -source things.......


This content was originally posted on Y! Answers, a Q&A website that shut down in 2021.
Loading...