473,545 Members | 2,003 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

VB or C?

Fact Poll

I made the transition from (Borland) C++ to VB.NET around 2004. I have been
happy with the choice. I find I can focus more on the problem and less on
being "tidy" with VB.

But, I fear that many don't take VB.NET seriously, particularly in
scientific programming. They ask; "What do you code in?" and you say;
"VB.NET." Conversation over.

I also fear that the technological tide may turn away from VB back towards C
- sending VB the way of the Sony betamax, Mac, and Dodo.

What are the facts? What are the advantages of C in terms of stability,
flexibility, and overall power? What about the long term trend? What is the
apparent emerging language today.

I kinow everyone is busy. I don't mean to waste anyone's time. I ask because
I am at a crossroads, embarking on a huge task. I want to be using the most
vital language. What better place to ask?
mark b

Apr 7 '07 #1
111 4757
Well, first off, I think you mean C#, rather than C, right? Because if you
do, in fact, mean C, then there are tremeandous differences. VB .NET is a
..NET language (obviously) and so all the advantages of .NET vs. COM come
into play (versioning/DLL Hell issues, deployment issues, the whole web
development/web services issue, caching, etc.).

If you do mean C# instead, then the differences between it and VB .NET are
minimal. You can do a Google search on VB.NET vs. C# and come up with all
kinds of articles (even from Microsoft) stating this. When comparing one
..NET language against another, the choice comes down to preference. In a
corporate environment, it comes down to the existing in-house skill set and
the amount of re-training the staff would need to become
productive/efficient in a new language. The differences between C# and VB
..NET are, largely, minor and don't come into play in huge ways for most
applications.

Lastly, anyone who would end a conversation about development languages
after you tell them you use VB .NET, should be ignored since they obviously
are not educated as to what a powerfull langugage VB .NET is. It's not your
father's VB 6.0 - it is leaps and bounds better, on par with any other OOP
language.

"mark" <ma**@discussio ns.microsoft.co mwrote in message
news:68******** *************** ***********@mic rosoft.com...
Fact Poll

I made the transition from (Borland) C++ to VB.NET around 2004. I have
been
happy with the choice. I find I can focus more on the problem and less on
being "tidy" with VB.

But, I fear that many don't take VB.NET seriously, particularly in
scientific programming. They ask; "What do you code in?" and you say;
"VB.NET." Conversation over.

I also fear that the technological tide may turn away from VB back towards
C
- sending VB the way of the Sony betamax, Mac, and Dodo.

What are the facts? What are the advantages of C in terms of stability,
flexibility, and overall power? What about the long term trend? What is
the
apparent emerging language today.

I kinow everyone is busy. I don't mean to waste anyone's time. I ask
because
I am at a crossroads, embarking on a huge task. I want to be using the
most
vital language. What better place to ask?
mark b

Apr 7 '07 #2
Hi Mark,

This is a Common Question that i heared between alot of deveolpers.

In Fact, After .Net Technology has see the light. it Gathered all
programming languages ( Like C, VB ) in one Base; which is the .Net
Framework. All the programming languages now using the same Basis.

So, it reffers to the developer background; if it is C, or VB, or .... what
are you familiar with!?

This will simplify the developer job, instead of forcing him/her to use the
same programming language.

This is my own openion!

Regards,
Husam Al-A'araj

"mark" wrote:
Fact Poll

I made the transition from (Borland) C++ to VB.NET around 2004. I have been
happy with the choice. I find I can focus more on the problem and less on
being "tidy" with VB.

But, I fear that many don't take VB.NET seriously, particularly in
scientific programming. They ask; "What do you code in?" and you say;
"VB.NET." Conversation over.

I also fear that the technological tide may turn away from VB back towards C
- sending VB the way of the Sony betamax, Mac, and Dodo.

What are the facts? What are the advantages of C in terms of stability,
flexibility, and overall power? What about the long term trend? What is the
apparent emerging language today.

I kinow everyone is busy. I don't mean to waste anyone's time. I ask because
I am at a crossroads, embarking on a huge task. I want to be using the most
vital language. What better place to ask?
mark b
Apr 7 '07 #3
mark wrote:
I made the transition from (Borland) C++ to VB.NET around 2004. I have been
happy with the choice. I find I can focus more on the problem and less on
being "tidy" with VB.

But, I fear that many don't take VB.NET seriously, particularly in
scientific programming. They ask; "What do you code in?" and you say;
"VB.NET." Conversation over.

I also fear that the technological tide may turn away from VB back towards C
- sending VB the way of the Sony betamax, Mac, and Dodo.

What are the facts? What are the advantages of C in terms of stability,
flexibility, and overall power? What about the long term trend? What is the
apparent emerging language today.

I kinow everyone is busy. I don't mean to waste anyone's time. I ask because
I am at a crossroads, embarking on a huge task. I want to be using the most
vital language. What better place to ask?
(I assume you mean C# not C)

If job adds is a good indicator of language usage then
C# usage outnumber VB.NET usage 3:1.

It is also my impression that it is much more common to
teach C# than VB.NET at very educations.

But there are still a lot of VB.NET code out
there now and will be too in the future.

I would not consider using VB.NET a risk for the project
long term.

Arne
Apr 7 '07 #4
In Fact, After .Net Technology has see the light. it Gathered all
programming languages ( Like C, VB ) in one Base; which is the .Net
Framework. All the programming languages now using the same Basis.
Well, there's a bit more to it than this. The .NET Framework consits of a
Common Language Runtime that only understands how to process native machine
code (not VB.NET, C#, J# or C++). There are language-specific comilers that
are part of the Framework and these compilers translate the original
language used into Intermediate Language (IL). The first user to use an
application will cause the Framework to translate the IL to native machine
code for the CLR to execute. The Framework also consists of a huge set of
base classes (not languages) that can be used, regardless of the particular
language the developer is using.

The Framework (and more specifically) the Common Language Runtime (CLR) is
built on something called the Common Language Specification, which sets some
ground rules that all .NET languages must follow. This CLS includes, yet
another component called the Common Type System (which says that all .NET
languages must have equivelant data types).

So, I would not say that the Framework is just a base language for all other
..NET language. That's a bit of an over simplification (and I have also left
out several other aspects of the Framework for brevity).

But, hopefully, this will shed light on why all .NET languages are more/less
on equal footing.
Apr 7 '07 #5
If job adds is a good indicator of language usage then
C# usage outnumber VB.NET usage 3:1.
So, you've seen *all* the .NET programming job ads and made this 3:1 based
on that? I think this value is highly speculative and can't be determined
unequivacly.
It is also my impression that it is much more common to
teach C# than VB.NET at very educations.
See my first comment.
But there are still a lot of VB.NET code out
there now and will be too in the future.
Very true. In fact, since VB (6 and lower) as well as VBA have been around
for so long that VB .NET will have a very safe future for these two reasons.

Many folks are hesitant to re-write something from scratch, rather than
upgrade it to a newer version.
There are so many VB 6 developers out there already that may not be willing
or able (or it just may not be practicle) to start all over with a new
language.
I would not consider using VB.NET a risk for the project
long term.
Your opinion and you are entitled to it.
Apr 7 '07 #6
Scott M. wrote:
>If job adds is a good indicator of language usage then
C# usage outnumber VB.NET usage 3:1.

So, you've seen *all* the .NET programming job ads and made this 3:1 based
on that? I think this value is highly speculative and can't be determined
unequivacly.
No.

But I know how to use the search field in a job database and
see the hit count in the result.

Today dice.com gives:

C# - 6867
VB.NET - 2512

(that is 2.73:1)
>It is also my impression that it is much more common to
teach C# than VB.NET at very educations.

See my first comment.
That is a more qualitative assessment.

But I think it is valid.
>I would not consider using VB.NET a risk for the project
long term.

Your opinion and you are entitled to it.
Apparently also your opinion.

Or did you no read what I actually wrote ?

Arne
Apr 7 '07 #7
Inline....

"Arne Vajhøj" <ar**@vajhoej.d kwrote in message
news:46******** *************** @news.sunsite.d k...
Scott M. wrote:
>>If job adds is a good indicator of language usage then
C# usage outnumber VB.NET usage 3:1.

So, you've seen *all* the .NET programming job ads and made this 3:1
based on that? I think this value is highly speculative and can't be
determined unequivacly.

No.

But I know how to use the search field in a job database and
see the hit count in the result.

Today dice.com gives:

C# - 6867
VB.NET - 2512

(that is 2.73:1)
Ok, one jobs search engine down, 435,000 to go.
>>It is also my impression that it is much more common to
teach C# than VB.NET at very educations.

See my first comment.

That is a more qualitative assessment.

But I think it is valid.
Why? I own & operate an IT training firm (http://TechTrainSolutions.com)
and I get far more request for VB .NET training than I do for C# with
customers just moving to .NET. Now, I'm not going to say that it is or it
isn't true that C# is taught more than VB .NET or vice versa (even though I
think I might be more qualified to say this) because I am but one training
provider. What's your impression based on?
>>I would not consider using VB.NET a risk for the project
long term.

Your opinion and you are entitled to it.

Apparently also your opinion.

Or did you no read what I actually wrote ?
Of course I did. Did you? There's nothing wrong with passing along an
opinion, but don't dress it up as a fact. I disputed your 3:1 statistic
because looking at one job site out of thousands does not a reliable
statistic make.

I also just pressed you on your impression that C# is taught more readily
than VB .NET - I didn't say you were wrong (did you read what I wrote?), I
just asked for why you had this impression.

Your third point, I agreed with.

As for your last comment (your opinion), I did not object at all. I merely
point out that it is an opinion.

So what, exactly, is wrong with my comments?

Apr 7 '07 #8
"mark" <ma**@discussio ns.microsoft.co mwrote in message
news:68******** *************** ***********@mic rosoft.com...
But, I fear that many don't take VB.NET seriously, particularly in
scientific programming. They ask; "What do you code in?" and you say;
"VB.NET." Conversation over.
Someone posted a link a while back to an article claiming that there are no
true VB.NET "developers " because the entire Basic collection of languages
allows for so much sloppiness and lack of structure - something like that,
anyway...

Can't find it at the moment - does anyone remember the post I'm talking
about...?
Apr 7 '07 #9
Can't find it at the moment - does anyone remember the post I'm talking
about...?
Kind of glad you can't find it.

That attitude is complete nonsense.

Tom Dacon
Dacon Software Consulting
(C#, VB.Net, ex-C++, ex-C developer)
Apr 7 '07 #10

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

Similar topics

3
11186
by: William C. White | last post by:
Does anyone know of a way to use PHP /w Authorize.net AIM without using cURL? Our website is hosted on a shared drive and the webhost company doesn't installed additional software (such as cURL) on the server because of that. Our site will have an SSL certificate next week, so I would like to use AIM instead of SIM, however, I don't know how...
2
5782
by: Albert Ahtenberg | last post by:
Hello, I don't know if it is only me but I was sure that header("Location:url") redirects the browser instantly to URL, or at least stops the execution of the code. But appearantely it continues to execute the code until the browser send his reply to the header instruction. So an exit(); after each redirection won't hurt at all
3
22974
by: James | last post by:
Hi, I have a form with 2 fields. 'A' 'B' The user completes one of the fields and the form is submitted. On the results page I want to run a query, but this will change subject to which field is completed.
0
8444
by: Ollivier Robert | last post by:
Hello, I'm trying to link PHP with Oracle 9.2.0/OCI8 with gcc 3.2.3 on a Solaris9 system. The link succeeds but everytime I try to run php, I get a SEGV from inside the libcnltsh.so library. 354 roberto@ausone:Build/php-4.3.2> ldd /opt/php4/bin/php libsablot.so.0 => /usr/local/lib/libsablot.so.0 libstdc++.so.5 => ...
1
8553
by: Richard Galli | last post by:
I want viewers to compare state laws on a single subject. Imagine a three-column table with a drop-down box on the top. A viewer selects a state from the list, and that state's text fills the column below. The viewer can select states from the drop down lists above the other two columns as well. If the viewer selects only one, only one...
4
18222
by: Albert Ahtenberg | last post by:
Hello, I have two questions. 1. When the user presses the back button and returns to a form he filled the form is reseted. How do I leave there the values he inserted? 2. When the user comes back to a page where he had a submitted POST data the browser keeps telling that the data has expired and asks if repost. How to avoid...
1
6784
by: inderjit S Gabrie | last post by:
Hi all Here is the scenerio ...is it possibly to do this... i am getting valid course dates output on to a web which i have designed ....all is okay so far , look at the following web url http://www.mis.gla.ac.uk/biquery/training/ but each of the courses held have maximum of 8 people that could be
2
31355
by: Jack | last post by:
Hi All, What is the PHP equivilent of Oracle bind variables in a SQL statement, e.g. select x from y where z=:parameter Which in asp/jsp would be followed by some statements to bind a value to :parameter I dont like the idea of making the SQL statement on the fly without binding parameters as I dont want a highly polluted SQL cache.
3
23544
by: Sandwick | last post by:
I am trying to change the size of a drawing so they are all 3x3. the script below is what i was trying to use to cut it in half ... I get errors. I can display the normal picture but not the results of the picture half the size. The PHP I have installed support 1.62 or higher. And all I would like to do is take and image and make it fit a...
0
7668
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. ...
1
7437
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...
0
7773
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...
0
5984
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...
1
5343
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...
0
3466
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...
0
3448
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
1025
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
0
722
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...

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.