473,779 Members | 2,035 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Looking for good vb.net info please

Hello,
I was VERY blessed with a Christmas gift of visual studio .net from a
man I hardly know who had heard of my plans of software developement.
So I am probably the only person in the world who actualy has this
great IDE and don't even know vb.net (or c sharp etc.).
I have some prior exposure to simple scripting language such as
javascript and I understand data types etc. (basic programming
concepts and procedures) but I don't have any high level languages
under my belt at all.

I am posting hopeing someone can help me find good info on the subject
of visual basic .net. I have found allot of good stuff in the msdn
library wich is a great resource but more of a reference than a guide
or tutorial. I also have downloaded and nearly completed the windows
programming section of Microsoft's Visual Studio .net Resource Kit
wich is also a great resource but is geared more toward learning the
IDE than the codeing.

I have searched for guides and tutorials on vb.net and can't find
anything (found allot of advertiseing books and pay courses wich i
can't afford)
There are however allot of good guides on vb6 but I have read that
there are allot of changes between vb6 and .net so I realy don't feal
like it would be good to learn 6 just to have to learn the changes and
further confuse myself (someone who confuses easily :)

If anyone can point me to a good vb .net course (free) that focuses on
the language and actual code as aposed to the IDE I would greatly
apriciate it.
Or even a list of the most common classes etc and some examples would
be great, I have msdn installed wich of course lists all classes but
WOW there are allot and they aren't organized in a "commonly used"
scheme so I have just been reading through them and trying to decide
for myself wich are worth beating into my memory and playing with
creating simple programs useing them.

Thank You,
Harley
Nov 20 '05 #1
10 2197
Go to:

http://msdn.microsoft.com
"Harley" <ju*****@yahoo. com> wrote in message
news:d6******** *************** ***@posting.goo gle.com...
Hello,
I was VERY blessed with a Christmas gift of visual studio .net from a
man I hardly know who had heard of my plans of software developement.
So I am probably the only person in the world who actualy has this
great IDE and don't even know vb.net (or c sharp etc.).
I have some prior exposure to simple scripting language such as
javascript and I understand data types etc. (basic programming
concepts and procedures) but I don't have any high level languages
under my belt at all.

I am posting hopeing someone can help me find good info on the subject
of visual basic .net. I have found allot of good stuff in the msdn
library wich is a great resource but more of a reference than a guide
or tutorial. I also have downloaded and nearly completed the windows
programming section of Microsoft's Visual Studio .net Resource Kit
wich is also a great resource but is geared more toward learning the
IDE than the codeing.

I have searched for guides and tutorials on vb.net and can't find
anything (found allot of advertiseing books and pay courses wich i
can't afford)
There are however allot of good guides on vb6 but I have read that
there are allot of changes between vb6 and .net so I realy don't feal
like it would be good to learn 6 just to have to learn the changes and
further confuse myself (someone who confuses easily :)

If anyone can point me to a good vb .net course (free) that focuses on
the language and actual code as aposed to the IDE I would greatly
apriciate it.
Or even a list of the most common classes etc and some examples would
be great, I have msdn installed wich of course lists all classes but
WOW there are allot and they aren't organized in a "commonly used"
scheme so I have just been reading through them and trying to decide
for myself wich are worth beating into my memory and playing with
creating simple programs useing them.

Thank You,
Harley

Nov 20 '05 #2
"Harley" <ju*****@yahoo. com> wrote...
I have some prior exposure to simple scripting language such as
javascript and I understand data types etc. (basic programming
concepts and procedures) but I don't have any high level languages
under my belt at all.


Well you certainly were lucky... and my suggestion may seem a bit odd
(somebody will surely comment about it) but consider reading a book by Bruce
Eckels. It's called "Thinking in Java" and I can almost hear you gasp
"what????" There are a couple of reasons. First .Net is surprisingly like
Java (particularly C#) but fundamentally so is VB.Net. Second, Bruce is an
excellent writer. And third you can download the book for free.

http://www.mindview.net/Books/TIJ/

You can also purchase the book if you like. Bruce also has a C# book but
that one is currently not available as a free download. It may be available
in bookstores however.

You can certainly choose a VB.Net book and depending upon how you learn that
might be best but if you can separate concepts from "verbatim syntax" then
you owe it to at least download the thing and skim through it. The OOP
concepts are identical, most of the language features are identical. After
reading that book you can choose a VB.Net book and find yourself saying "oh,
I know that" most of the time. .Net specific features (including specific
syntax) would be your focus rather than the OOP fundamentals.

Java is going to use curly braces, C# uses curly braces, VB.Net does not.
Java uses semi-colons, C# uses semi-colons, VB.Net does not. If declaring a
variable by prefacing it with a datatype rather than using the "As" keyword
is going to throw you for a loop you might have to stick to just VB.Net but
again I suggest there is no downside to skimming the book. You should be
able to translate:

int test = 5;
into
dim test as integer = 5

without much trouble. In any case you aren't reading the book to learn Java
syntax, you aren't going to key in any examples you're simply understanding
concepts. A good book on SmallTalk could do that... but in this case it
happens to be a good book on Java.

Tom
Nov 20 '05 #3
Cor
Hi Harley

In my eyes beside msdn.microsoft. com the best resource for VB.net

http://msdn.microsoft.com/vbasic/vbrkit/default.aspx

And if you have problems installing it

http://msdn.microsoft.com/vbasic/vbr...q/#installvdir

I hope this helps a little bit?

Cor
Nov 20 '05 #4
Hi,

VBTV is a good resource.
http://msdn.microsoft.com/vbtv/

Here is a link to some free training untested.
http://www.vtmag.com/

Ken
-----------------
"Harley" <ju*****@yahoo. com> wrote in message
news:d6******** *************** ***@posting.goo gle.com...
Hello,
I was VERY blessed with a Christmas gift of visual studio .net from a
man I hardly know who had heard of my plans of software developement.
So I am probably the only person in the world who actualy has this
great IDE and don't even know vb.net (or c sharp etc.).
I have some prior exposure to simple scripting language such as
javascript and I understand data types etc. (basic programming
concepts and procedures) but I don't have any high level languages
under my belt at all.

I am posting hopeing someone can help me find good info on the subject
of visual basic .net. I have found allot of good stuff in the msdn
library wich is a great resource but more of a reference than a guide
or tutorial. I also have downloaded and nearly completed the windows
programming section of Microsoft's Visual Studio .net Resource Kit
wich is also a great resource but is geared more toward learning the
IDE than the codeing.

I have searched for guides and tutorials on vb.net and can't find
anything (found allot of advertiseing books and pay courses wich i
can't afford)
There are however allot of good guides on vb6 but I have read that
there are allot of changes between vb6 and .net so I realy don't feal
like it would be good to learn 6 just to have to learn the changes and
further confuse myself (someone who confuses easily :)

If anyone can point me to a good vb .net course (free) that focuses on
the language and actual code as aposed to the IDE I would greatly
apriciate it.
Or even a list of the most common classes etc and some examples would
be great, I have msdn installed wich of course lists all classes but
WOW there are allot and they aren't organized in a "commonly used"
scheme so I have just been reading through them and trying to decide
for myself wich are worth beating into my memory and playing with
creating simple programs useing them.

Thank You,
Harley

Nov 20 '05 #5
* "CHAN MING MAN" <ch****@tm.net. my> scripsit:
Go to:

http://msdn.microsoft.com


ROFL

--
Herfried K. Wagner [MVP]
<http://www.mvps.org/dotnet>
Nov 20 '05 #6
* "Cor" <no*@non.com> scripsit:
In my eyes beside msdn.microsoft. com the best resource for VB.net

http://msdn.microsoft.com/vbasic/vbrkit/default.aspx

And if you have problems installing it

http://msdn.microsoft.com/vbasic/vbr...q/#installvdir


The OP mentioned that he already had a look at that...

:-)

--
Herfried K. Wagner [MVP]
<http://www.mvps.org/dotnet>
Nov 20 '05 #7
Cor
LOL,

Do you have time today to read.

But not that bad, I find it the best and that I told also.

Cor
Nov 20 '05 #8
* "Cor" <no*@non.com> scripsit:
LOL,

Do you have time today to read.
I have always time to read:

| I also have downloaded and nearly completed the windows
| programming section of Microsoft's Visual Studio .net Resource Kit
| wich is also a great resource but is geared more toward learning the
| IDE than the codeing.
But not that bad, I find it the best and that I told also.


ACK.

--
Herfried K. Wagner [MVP]
<http://www.mvps.org/dotnet>
Nov 20 '05 #9

"Harley" <ju*****@yahoo. com> wrote in message
news:d6******** *************** ***@posting.goo gle.com...
Hello,
I was VERY blessed with a Christmas gift of visual studio .net from a
man I hardly know who had heard of my plans of software developement.
So I am probably the only person in the world who actualy has this
great IDE and don't even know vb.net (or c sharp etc.).
I have some prior exposure to simple scripting language such as
javascript and I understand data types etc. (basic programming
concepts and procedures) but I don't have any high level languages
under my belt at all.

I am posting hopeing someone can help me find good info on the subject
of visual basic .net. I have found allot of good stuff in the msdn
library wich is a great resource but more of a reference than a guide
or tutorial. I also have downloaded and nearly completed the windows
programming section of Microsoft's Visual Studio .net Resource Kit
wich is also a great resource but is geared more toward learning the
IDE than the codeing.

I have searched for guides and tutorials on vb.net and can't find
anything (found allot of advertiseing books and pay courses wich i
can't afford)
There are however allot of good guides on vb6 but I have read that
there are allot of changes between vb6 and .net so I realy don't feal
like it would be good to learn 6 just to have to learn the changes and
further confuse myself (someone who confuses easily :)

If anyone can point me to a good vb .net course (free) that focuses on
the language and actual code as aposed to the IDE I would greatly
apriciate it.
Or even a list of the most common classes etc and some examples would
be great, I have msdn installed wich of course lists all classes but
WOW there are allot and they aren't organized in a "commonly used"
scheme so I have just been reading through them and trying to decide
for myself wich are worth beating into my memory and playing with
creating simple programs useing them.

Thank You,
Harley


Hello, Harley!
I have a couple of suggestions for you in the book area. There are a lot of
excellent web sites which provide information, but for a complete beginner,
they can be a bit overwhelming :-)
The Microsoft Press "Step By Step" series might be beneficial. You can find
a "Step By Step" book for Visual Basic, C# and for C++.
Titles are: "Microsoft Visual Basic .NET Step By Step", "Microsoft Visual C#
..NET Step By Step" and "Microsoft Visual C++ .NET Step By Step"

http://www.microsoft.com/learning/bo...ed/default.asp

If you decide you need a complete beginner's tutorial, textbooks might be
what you need. Follow the link below to some excellent tutorial style
textbooks that assume no prior knowledge of programming or of the IDE:

http://www.deitel.com/books/index.html

Look at the "Simply" series. There are (currently) books for Visual Basic
and C#, with C++ on the horizon.

Hope this helps,

--
Peter [MVP Academic]
Nov 20 '05 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
1670
by: Malcolm | last post by:
Can anyone please provide me with as many info and news sources that they know of? i.e. www.plusplus.com etc.etc. Thank you, Malcolm axiom@bulloch.net
51
7981
by: Matt | last post by:
Hello, I'm a hiring C++ developer employer looking for existing, online C++ aptitude tests. I have not yet extensively researched this yet, but as an example, I thought this test looked pretty good: http://expertrating.com/c++test.asp
3
1224
by: Shapper | last post by:
Hello, Could someone point me a good validation control for ASP.Net? Thank You, Miguel
7
1719
by: boostngti via DotNetMonster.com | last post by:
I have 4 years of programing exp. with Coldfusion, and I am begining to learn ASP.NET C# and was wondering if some people could suggest some good books. I went to Barnes & Noble the other day and kind of looked over a few book. If anyone has read any of the following I would like to know what you thought of the book. Beginning ASP.NET 1.1 in C#: From Novice to Professional...
2
315
by: Harley | last post by:
Hello, I was VERY blessed with a Christmas gift of visual studio .net from a man I hardly know who had heard of my plans of software developement. So I am probably the only person in the world who actualy has this great IDE and don't even know vb.net (or c sharp etc.). I have some prior exposure to simple scripting language such as javascript and I understand data types etc. (basic programming concepts and procedures) but I don't have any...
0
1089
by: gusse.net | last post by:
Hope it is ok to post here ! We are looking for companies that are experts in dotnet and c# . Most also have good knowledge of database, ado and XML We have a project where we need about 1-2 people for a period for 3-6 month to start with. Please send me a mail at bg (at) adwiza .com with company info and some info about other project you have done..
4
2022
by: tony | last post by:
I'm designing a survey form page that will be fairly complex and am becoming confident enough with PHP now to tackle most things. (Thanks to everyone here who has helped) Before I go too far with this I was wondering if anyone could perhaps offer advice or point me to any documents/web pages that could help with ensuring the security of the form/page and site. It is likely that the form will come under attack I expect. Even comments...
8
2443
by: Steve | last post by:
Hi; I had a big link checking job to do and it has been years since I have done anything like that so I found a test page to use that I knew had bad links on it( a friends site ) and I decided to test the various free services out. I tried about 5 different link checkers on the test page I had , including Xenu and NetMechanic. I got 5 sets of identical results.
0
9632
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9471
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10302
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10136
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
9925
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
8958
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
6723
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5372
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
2
3631
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.