473,395 Members | 2,796 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,395 software developers and data experts.

VB 2005 Syntax

Hello,

I have issues which I do not know how to go about. For example, reading and
writing into a textfile.txt. I have looking into some videos from
learningvisualstudio.net. The instructor makes the syntax look easy. My
question is how does he know what to do? As a 15 year programmer from vb6
coming to vb2005, things are not easy as they seem. If one is writing an
app for selling purposes, this could invite a lot of debugging problems and
gray hair. Because the syntax is foreign and new, how does one go about
trusting his/her own syntax. How many people use vb2005 for production and
not for learning. Am I correct in what I am saying? or am I on the wrong
track?

Please help!

Sharrukin

--

Warm Regards,

Sharrukin

-----------------------------------------------------------------------------------------------------------------------------------------------------
FREE UNLIMITED INTERNET ACCESS ANYWHERE IN CANADA & USA (Over 13,500 Cities)
Go to >http://www.freenetcd.com and get your FREENET CD!
-----------------------------------------------------------------------------------------------------------------------------------------------------
Aug 17 '06 #1
4 1634
buy yourself a good book

as you are a VB6 programmer you should best buy

programming microsoft visual basic VB.Net 2003 and 2005 from francesco
balena as these books are especially usefull for VB6 programmers
I started with Basic on the C64 :-) but never stopped learning new
technology`s i guess you have some catching up to do :-)

regards

Michel Posseth [MCP]
"Sharrukin Amiri" <sh*******@amtekcenter.comschreef in bericht
news:ea****************@TK2MSFTNGP02.phx.gbl...
Hello,

I have issues which I do not know how to go about. For example, reading
and writing into a textfile.txt. I have looking into some videos from
learningvisualstudio.net. The instructor makes the syntax look easy. My
question is how does he know what to do? As a 15 year programmer from vb6
coming to vb2005, things are not easy as they seem. If one is writing an
app for selling purposes, this could invite a lot of debugging problems
and gray hair. Because the syntax is foreign and new, how does one go
about trusting his/her own syntax. How many people use vb2005 for
production and not for learning. Am I correct in what I am saying? or am
I on the wrong track?

Please help!

Sharrukin

--

Warm Regards,

Sharrukin

-----------------------------------------------------------------------------------------------------------------------------------------------------
FREE UNLIMITED INTERNET ACCESS ANYWHERE IN CANADA & USA (Over 13,500
Cities)
Go to >http://www.freenetcd.com and get your FREENET CD!
-----------------------------------------------------------------------------------------------------------------------------------------------------


Aug 17 '06 #2
"Sharrukin Amiri" <sh*******@amtekcenter.comwrote in message
news:ea****************@TK2MSFTNGP02.phx.gbl...
As a 15 year programmer from vb6 coming to vb2005, things are not easy as
they seem.
There is a book called "The .NET Languages: A Quick Translation Guide" by
Brian Bischof. It is very helpful for translating the VB6 stuff into
VB.NET.

http://www.amazon.com/gp/product/189...e=UTF8&s=books

-- Alan
Aug 17 '06 #3
Hello Sharrukin,

Neat name, if it's real.

Anyhow.. VB.NET syntax is not all that different from VB6. I spent probably
a good 2 months in learning before I was confidant enough to use it in production.
Here's some of the biggest thing's to keep in mind (at least for me).. there
are undoubtedly a myriad of minor things but those are easy to catch as you
code.

1. Constructors.. proper ctor overloading can make a world of difference,
not only in how you create an object, but it can, to a smaller extent, affect
architecture as well.

2. Variable instantiation during declaration.. (ex. Dim tName as string
= "Joe"... or Dim tName As String = String.Empty)

Those two things are probably the two most time-saving and helpful things
I notice in every-day coding. There are, as I said before, a myriad of other
minor things.. but the VS IDE handles of lot of it for you.. (like property
accessor sytax and interface implementations)..

Books are good for a one-shot deal. My problem with books is that they depreciate
uin value almost as fast as new vehicles.. and I only use them once.. and
usually I only use a fraction of them. The last programming book I bought
I looked at one chapter and have never looked at it since. Ah well. $45.00
well spent. HA.

-Boo
Hello,

I have issues which I do not know how to go about. For example,
reading and writing into a textfile.txt. I have looking into some
videos from learningvisualstudio.net. The instructor makes the syntax
look easy. My question is how does he know what to do? As a 15 year
programmer from vb6 coming to vb2005, things are not easy as they
seem. If one is writing an app for selling purposes, this could
invite a lot of debugging problems and gray hair. Because the syntax
is foreign and new, how does one go about trusting his/her own syntax.
How many people use vb2005 for production and not for learning. Am I
correct in what I am saying? or am I on the wrong track?

Please help!

Sharrukin

Sharrukin

----------------------------------------------------------------------
----------------------------------------------------------------------
---------

FREE UNLIMITED INTERNET ACCESS ANYWHERE IN CANADA & USA (Over 13,500
Cities)

Go to >http://www.freenetcd.com and get your FREENET CD!

----------------------------------------------------------------------
----------------------------------------------------------------------
---------

Aug 19 '06 #4
Books are good for a one-shot deal. My problem with books is that they
depreciate
uin value almost as fast as new vehicles.. and I only use them once.. and
usually I only use a fraction of them. The last programming book I bought
I looked at one chapter and have never looked at it since. Ah well.
$45.00 well spent. HA.


I thought so to untill i bought the "right" books
regards

Michel Posseth [MCP]
"GhostInAK" <gh*******@gmail.comschreef in bericht
news:c7**************************@news.microsoft.c om...
Hello Sharrukin,

Neat name, if it's real.

Anyhow.. VB.NET syntax is not all that different from VB6. I spent
probably a good 2 months in learning before I was confidant enough to use
it in production. Here's some of the biggest thing's to keep in mind (at
least for me).. there are undoubtedly a myriad of minor things but those
are easy to catch as you code.

1. Constructors.. proper ctor overloading can make a world of difference,
not only in how you create an object, but it can, to a smaller extent,
affect architecture as well.

2. Variable instantiation during declaration.. (ex. Dim tName as string
= "Joe"... or Dim tName As String = String.Empty)

Those two things are probably the two most time-saving and helpful things
I notice in every-day coding. There are, as I said before, a myriad of
other minor things.. but the VS IDE handles of lot of it for you.. (like
property accessor sytax and interface implementations)..

Books are good for a one-shot deal. My problem with books is that they
depreciate uin value almost as fast as new vehicles.. and I only use them
once.. and usually I only use a fraction of them. The last programming
book I bought I looked at one chapter and have never looked at it since.
Ah well. $45.00 well spent. HA.

-Boo
>Hello,

I have issues which I do not know how to go about. For example,
reading and writing into a textfile.txt. I have looking into some
videos from learningvisualstudio.net. The instructor makes the syntax
look easy. My question is how does he know what to do? As a 15 year
programmer from vb6 coming to vb2005, things are not easy as they
seem. If one is writing an app for selling purposes, this could
invite a lot of debugging problems and gray hair. Because the syntax
is foreign and new, how does one go about trusting his/her own syntax.
How many people use vb2005 for production and not for learning. Am I
correct in what I am saying? or am I on the wrong track?

Please help!

Sharrukin

Sharrukin

----------------------------------------------------------------------
----------------------------------------------------------------------
---------

FREE UNLIMITED INTERNET ACCESS ANYWHERE IN CANADA & USA (Over 13,500
Cities)

Go to >http://www.freenetcd.com and get your FREENET CD!

----------------------------------------------------------------------
----------------------------------------------------------------------
---------


Aug 19 '06 #5

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

Similar topics

2
by: James S | last post by:
Hi I've been porting a project to .Net that has several segments of code that I would like to keep as native code in wrappers. I've been using VS2003 and VC++ to create mixed dlls that I then...
11
by: Peter Oliphant | last post by:
I've been trying all morning to convert my 2003 project (managed) to 2005 (/clr since I have both managed and unmanaged code). I'm guessing I have tens of thousands of lines of code to change. Did...
11
by: billmiami2 | last post by:
I recently generated a script using SQL Server 2005 for a local database that is configured as SQL Server 2000. Nevertheless, the script used the new structures and syntax (i.e., sys.objects vs....
1
by: Ruth413 | last post by:
Hello - I am getting the these errors in my sql 2005 generated script. I am stuck with first error. Please help.... Msg 102, Level 15, State 1, Line 3 Incorrect syntax near '('. Msg 319,...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
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,...
0
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,...
0
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...
0
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...
0
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,...

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.