473,796 Members | 2,541 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

VB.NET Book

Hi,

I've been writing C++ COM controls and VB 6 Applications for years. Before
that Windows applications in C and OS2 Presentation Manager in C. My
question is what book do you think would be best for me to use to learn
VB.NET? I've already done some small project conversions of my VB 6 code.
I haven't yet converted my C++ COM objects, some of which are ATL based and
some MFC based. This is a pretty broad request I know, so you may want to
respond with more than one book title. I would like books that cover some
of the more advanced topics like Threading, Synchronization Objects, and how
and when to use API's when .NET framework is not adequate.

Dave
Dec 20 '05 #1
4 1383
Dave,

I don't use a book, I use Internet, however there are two free books for
that.

http://www.vb-tips.com/default.aspx?...5-e16db864a414

I hope this helps,

Cor

"Dave" <Ki************ @community.nosp am> schreef in bericht
news:er******** ******@TK2MSFTN GP15.phx.gbl...
Hi,

I've been writing C++ COM controls and VB 6 Applications for years.
Before
that Windows applications in C and OS2 Presentation Manager in C. My
question is what book do you think would be best for me to use to learn
VB.NET? I've already done some small project conversions of my VB 6 code.
I haven't yet converted my C++ COM objects, some of which are ATL based
and
some MFC based. This is a pretty broad request I know, so you may want to
respond with more than one book title. I would like books that cover some
of the more advanced topics like Threading, Synchronization Objects, and
how
and when to use API's when .NET framework is not adequate.

Dave

Dec 20 '05 #2
I primarily use the internet and news groups. But I thought I might run
through a book over the holidays.

Thanks you for your suggestion. I will take a look at these. Free is
always nice.
"Cor Ligthert [MVP]" <no************ @planet.nl> wrote in message
news:uU******** ******@TK2MSFTN GP15.phx.gbl...
Dave,

I don't use a book, I use Internet, however there are two free books for
that.

http://www.vb-tips.com/default.aspx?...5-e16db864a414
I hope this helps,

Cor

"Dave" <Ki************ @community.nosp am> schreef in bericht
news:er******** ******@TK2MSFTN GP15.phx.gbl...
Hi,

I've been writing C++ COM controls and VB 6 Applications for years.
Before
that Windows applications in C and OS2 Presentation Manager in C. My
question is what book do you think would be best for me to use to learn
VB.NET? I've already done some small project conversions of my VB 6 code. I haven't yet converted my C++ COM objects, some of which are ATL based
and
some MFC based. This is a pretty broad request I know, so you may want to respond with more than one book title. I would like books that cover some of the more advanced topics like Threading, Synchronization Objects, and
how
and when to use API's when .NET framework is not adequate.

Dave


Dec 20 '05 #3

Dave wrote:
Hi,

I've been writing C++ COM controls and VB 6 Applications for years. Before
that Windows applications in C and OS2 Presentation Manager in C. My
question is what book do you think would be best for me to use to learn
VB.NET? I've already done some small project conversions of my VB 6 code.
I haven't yet converted my C++ COM objects, some of which are ATL based and
some MFC based. This is a pretty broad request I know, so you may want to
respond with more than one book title. I would like books that cover some
of the more advanced topics like Threading, Synchronization Objects, and how
and when to use API's when .NET framework is not adequate.


IMO the .NET framework is still young enough that there aren't a great
deal of 'in-depth' books, such as there are for C++ (of course) and
MFC/ATL/COM, which have all been around long enough to be thoroughly
digested by the community at large. I would say you would be best of
with whatever general .NET book you can find that sounds like it's as
'advanced' as possible, but be prepared for it to be not that
'advanced' at all and that you will have to do a lot of digging /
tweaking / googling yourself.

With a background in VB6 and C++ COM you should probably look to be
learning C# as well as VB.NET, since a lot of what docs there are will
be targeting C++ programmers moving to .NET (and by supposition, C#).
Being able to translate code examples fluently between the two is an
invaluable skill.

My favorite general VB.NET book (it starts at the beginning but in
places reaches an intermediate-advanced level) is Balena, Programming
VB.NET. There is a 2003 edition out now; the 2005 edition is due in
January. I don't know of any really advanced VB.NET-oriented books, but
part of the point is that it doesn't really matter. As for C#,
Troelsen's 'Pro C#' (2005 edition out now) seems to attract praise,
can't speak for it myself. Chris Sells' 'Windows Forms programming in
C#' will teach you about much more than just what the title suggests.
Petzold of course. Beware however that there are a *lot* of
'documentation rewrite'-type books out there :(

One thing to bear in mind is that the documentation (not the
'reference' parts, which are still horribly copy-and-paste in places,
but the 'explanation' parts) is often excellent in explaining the whys
and hows of the .NET way. The MSDN LIbrary is something you just can't
do without.

--
Larry Lard
Replies to group please

Dec 21 '05 #4
Thanks Larry,

I am an MSDN subscriber so I do at least have it as a resource.

I will look into the other books you mentioned, and yes I am looking to be
able to develop equally and fluently in both C# and VB.

Dave
"Larry Lard" <la*******@hotm ail.com> wrote in message
news:11******** *************@g 44g2000cwa.goog legroups.com

Dave wrote:
Hi,

I've been writing C++ COM controls and VB 6 Applications for years. Before that Windows applications in C and OS2 Presentation Manager in C. My
question is what book do you think would be best for me to use to learn
VB.NET? I've already done some small project conversions of my VB 6 code. I haven't yet converted my C++ COM objects, some of which are ATL based and some MFC based. This is a pretty broad request I know, so you may want to respond with more than one book title. I would like books that cover some of the more advanced topics like Threading, Synchronization Objects, and how and when to use API's when .NET framework is not adequate.


IMO the .NET framework is still young enough that there aren't a great
deal of 'in-depth' books, such as there are for C++ (of course) and
MFC/ATL/COM, which have all been around long enough to be thoroughly
digested by the community at large. I would say you would be best of
with whatever general .NET book you can find that sounds like it's as
'advanced' as possible, but be prepared for it to be not that
'advanced' at all and that you will have to do a lot of digging /
tweaking / googling yourself.

With a background in VB6 and C++ COM you should probably look to be
learning C# as well as VB.NET, since a lot of what docs there are will
be targeting C++ programmers moving to .NET (and by supposition, C#).
Being able to translate code examples fluently between the two is an
invaluable skill.

My favorite general VB.NET book (it starts at the beginning but in
places reaches an intermediate-advanced level) is Balena, Programming
VB.NET. There is a 2003 edition out now; the 2005 edition is due in
January. I don't know of any really advanced VB.NET-oriented books, but
part of the point is that it doesn't really matter. As for C#,
Troelsen's 'Pro C#' (2005 edition out now) seems to attract praise,
can't speak for it myself. Chris Sells' 'Windows Forms programming in
C#' will teach you about much more than just what the title suggests.
Petzold of course. Beware however that there are a *lot* of
'documentation rewrite'-type books out there :(

One thing to bear in mind is that the documentation (not the
'reference' parts, which are still horribly copy-and-paste in places,
but the 'explanation' parts) is often excellent in explaining the whys
and hows of the .NET way. The MSDN LIbrary is something you just can't
do without.

--
Larry Lard
Replies to group please

Dec 21 '05 #5

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

Similar topics

9
2429
by: anonymous | last post by:
Hi CLCers, I want to know your opinion about the book: Expert C programming-Deep C secrets by Peter Van Der Linden. Thanks in advance. Sha
12
2122
by: Guido Mureddu | last post by:
Hello, I'm a student in electronic engineering. I do know you've seen and answered this sort of topic/request countless times, but I haven't found past threads as helpful as I had hoped, and even though I have read them all and many reviews, I prefer to ask directly to people who know the subject better than anyone else. First of all, I'm not new to programming, and I have already had an introductory course on C. I have an...
16
8511
by: Robert Zurer | last post by:
Can anyone suggest the best book or part of a book on this subject. I'm looking for an in-depth treatment with examples in C# TIA Robert Zurer robert@zurer.com
8
2197
by: Dgates | last post by:
Has anyone typed up an index for the O'Reilly book "C# and VB.NET Conversion?" I'm just learning C#, and often using this little book to see which VB.NET terms translate directly to some term in C#. However, it's a real hassle that the book has no index, just a table of contents. For example, as early as page 8, the book teaches that C#'s "using" statement is the equivalent of VB.NET's "imports" statement. However, that concept...
4
1780
by: Mike | last post by:
Hi, I am planning on purchasing VS2005 to learn C# very soon, and I need good book recommendations. I realize this is a question that may be asked a lot, but please consider my background: I have been a ClassicVB/ASP programmer for about 7 years. I have never done anything with .NET and only have a very basic understanding of the platform. Recently, I started working on a large JAVA project at my job (even though I have very little...
11
1934
by: www.douglassdavis.com | last post by:
I'm looking for advice here, and I would really appreciate it if you could help. Is there a VB 2005 book that you like and would recommend (and why)? Would you consider it good for beginners to programming, intermediate, or advanced level?
263
9405
by: Malcolm McLean | last post by:
The webpages for my new book are now up and running. The book, Basic Algorithms, describes many of the fundamental algorithms used in practical programming, with a bias towards graphics. It includes mathematical routines from the basics up, including floating point arithmetic, compression techniques, including the GIF and JPEG file formats, hashing, red black trees, 3D and 3D graphics, colour spaces, machine learning with neural...
6
1988
by: Hello | last post by:
Hello every body Please can any body tells me a good book that can teach me "visual basic 2005" (as beginner). Thank you all =========================================
1
3592
by: jrw133 | last post by:
i got this program the other day and ive just started it and i am getting some errors that i cant figure out. requirements: 1)create a clas called Book. a Book has three data members: m_title, m_id and m_flag to tell whether the book is in or checked out. 2)Write a constructor for Book. write a constructor that takes 3 parameters: Book(char * title, int id, bool flag) and initializes the 3 data members accordingly. in addition print out a...
76
4096
by: lorlarz | last post by:
Crockford's JavaScript, The Good Parts (a book review). This shall perhaps be the world's shortest book review (for one of the world's shortests books). I like Douglas Crockford (because I am a crabby old man too; plus he _is_ smart and good).. But, how can he write a book on the good parts of JavaScript and not mention functions that address CSS & DOM? Weird. It's like
0
9531
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
10459
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...
1
10187
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9055
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...
1
7553
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6795
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
5578
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
3735
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2928
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.