473,320 Members | 1,719 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,320 software developers and data experts.

VB.NET vs C#

I have been having a debate with a coleague at work about C# vs. VB.net.

He is determined that VB is a toy and that C# is so much better on
performance wise.

I told him that I don't believe that and from all that I had seen in
conversations/research, the differences seem to be trivial, yet VB.NET has
more IDE support and is frankly easier to use, unless you are from a C
background in which case C# would be the natural choice.

He said that just in doing an empty loop, that the VB code was a different
from the C# code and underperformed it.

I am kind of aggravated by the prevelent choice of so many people using C#
just out of arrogance, or intimidation by the seemingly "better-than-thou"
attitudes from many from the non-VB camp.

Any comments on this? Links to some numbers/statistics to prove that any
differences would be trivial and that VB would be just as good as C#--and
considering that we are a VB shop--would be the more logical choice for a
rewrite, would also be appreciated.

Thanks,

Shane
Nov 21 '05 #1
20 1637

Jan. 10, 2005

My stance on the issue as a Visual Basic .Net developer is that both
C# and VB are equal. Both, when compiled, run as managed code. They have the
same benefits of isolated execution, suberb exception handling, and very easy
deployment among others. Both can use exceptional techologies such as:
ADO.Net, Xml Web Services, XML, ASP.Net, .Net Remoting, Windows Services, and
Serviced Components. It is my experience that the performance and quality of
an application is not much due to the specific .Net language, but in the
knowledgable application developer. I believe that the difference between the
languages is not in the language itself, but in the developers that implement
the language. In conclusion I believe both are equal although some are a bit
more legible like VB. :)
Joseph MCAD

"SStory" wrote:
I have been having a debate with a coleague at work about C# vs. VB.net.

He is determined that VB is a toy and that C# is so much better on
performance wise.

I told him that I don't believe that and from all that I had seen in
conversations/research, the differences seem to be trivial, yet VB.NET has
more IDE support and is frankly easier to use, unless you are from a C
background in which case C# would be the natural choice.

He said that just in doing an empty loop, that the VB code was a different
from the C# code and underperformed it.

I am kind of aggravated by the prevelent choice of so many people using C#
just out of arrogance, or intimidation by the seemingly "better-than-thou"
attitudes from many from the non-VB camp.

Any comments on this? Links to some numbers/statistics to prove that any
differences would be trivial and that VB would be just as good as C#--and
considering that we are a VB shop--would be the more logical choice for a
rewrite, would also be appreciated.

Thanks,

Shane

Nov 21 '05 #2
There really are no significant performance or functional differences
between the 2 languages. Your colleague is mis-informed about what .NET is
and how it operates at low levels.
"SStory" <Th*******@TAKEOUTTHISSPAMBUSTERsofthome.net> wrote in message
news:Ol**************@TK2MSFTNGP11.phx.gbl...
I have been having a debate with a coleague at work about C# vs. VB.net.

He is determined that VB is a toy and that C# is so much better on
performance wise.

I told him that I don't believe that and from all that I had seen in
conversations/research, the differences seem to be trivial, yet VB.NET has
more IDE support and is frankly easier to use, unless you are from a C
background in which case C# would be the natural choice.

He said that just in doing an empty loop, that the VB code was a different
from the C# code and underperformed it.

I am kind of aggravated by the prevelent choice of so many people using C#
just out of arrogance, or intimidation by the seemingly "better-than-thou"
attitudes from many from the non-VB camp.

Any comments on this? Links to some numbers/statistics to prove that any
differences would be trivial and that VB would be just as good as C#--and
considering that we are a VB shop--would be the more logical choice for a
rewrite, would also be appreciated.

Thanks,

Shane

Nov 21 '05 #3
Hi,

The old assumption of significant advantage between languages goes back to
the difference between, say, C and VB 3 or 4 and again with C++ and VB5 or
VB6. VB .Net and C# create the same IL instructions almost always, and both
have the same object foundation and efficiencies. There are a few, minor
differences. These differences are about the same as the difference between
Henry James and DH Lawrence; they are not the differences you would see
between Shakespeare and Oscar Wilde, to use some literary metaphors, where
the differences are vast.

HTH,

Bernie Yaeger

"SStory" <Th*******@TAKEOUTTHISSPAMBUSTERsofthome.net> wrote in message
news:Ol**************@TK2MSFTNGP11.phx.gbl...
I have been having a debate with a coleague at work about C# vs. VB.net.

He is determined that VB is a toy and that C# is so much better on
performance wise.

I told him that I don't believe that and from all that I had seen in
conversations/research, the differences seem to be trivial, yet VB.NET has
more IDE support and is frankly easier to use, unless you are from a C
background in which case C# would be the natural choice.

He said that just in doing an empty loop, that the VB code was a different
from the C# code and underperformed it.

I am kind of aggravated by the prevelent choice of so many people using C#
just out of arrogance, or intimidation by the seemingly "better-than-thou"
attitudes from many from the non-VB camp.

Any comments on this? Links to some numbers/statistics to prove that any
differences would be trivial and that VB would be just as good as C#--and
considering that we are a VB shop--would be the more logical choice for a
rewrite, would also be appreciated.

Thanks,

Shane

Nov 21 '05 #4
<SNIP...>
He said that just in doing an empty loop, that the VB code was a different
from the C# code and underperformed it.
<...SNIP>

Tell ya what. Have your colleague step up and provide the code for this
simple empty loop in both C# and VB.Net format. Then post it here. I bet ya
we can prove him wrong.

The main reason VB.Net might underperform C# has everything to do with the
experience of the developer. Improperly constructed code will perform poorly
in any language. Under the hood, if comparably written, they compile to the
same thing.

Gerald

"SStory" <Th*******@TAKEOUTTHISSPAMBUSTERsofthome.net> wrote in message
news:Ol**************@TK2MSFTNGP11.phx.gbl...
I have been having a debate with a coleague at work about C# vs. VB.net.

He is determined that VB is a toy and that C# is so much better on
performance wise.

I told him that I don't believe that and from all that I had seen in
conversations/research, the differences seem to be trivial, yet VB.NET has
more IDE support and is frankly easier to use, unless you are from a C
background in which case C# would be the natural choice.

He said that just in doing an empty loop, that the VB code was a different
from the C# code and underperformed it.

I am kind of aggravated by the prevelent choice of so many people using C#
just out of arrogance, or intimidation by the seemingly "better-than-thou"
attitudes from many from the non-VB camp.

Any comments on this? Links to some numbers/statistics to prove that any
differences would be trivial and that VB would be just as good as C#--and
considering that we are a VB shop--would be the more logical choice for a
rewrite, would also be appreciated.

Thanks,

Shane

Nov 21 '05 #5
The differences I see are:

in c# you can use unsafe pointers wich is a must if you are writing routines
for sharpening an image, for example.

in vb you have compliation while you write.

in c# you have easy documentation inside the program, but I cannot comment
how it works because I use vb.

well, in c# you can use overloaded operators.

there are no big differences, it is not a c++ to vb5 debate.

use whatever you feel, i would like that we were able to mix clases in
differents languages in the same project.


"Joseph MCAD" <Jo********@discussions.microsoft.com> escribió en el mensaje
news:80**********************************@microsof t.com...

Jan. 10, 2005

My stance on the issue as a Visual Basic .Net developer is that
both
C# and VB are equal. Both, when compiled, run as managed code. They have
the
same benefits of isolated execution, suberb exception handling, and very
easy
deployment among others. Both can use exceptional techologies such as:
ADO.Net, Xml Web Services, XML, ASP.Net, .Net Remoting, Windows Services,
and
Serviced Components. It is my experience that the performance and quality
of
an application is not much due to the specific .Net language, but in the
knowledgable application developer. I believe that the difference between
the
languages is not in the language itself, but in the developers that
implement
the language. In conclusion I believe both are equal although some are a
bit
more legible like VB. :)
Joseph MCAD

"SStory" wrote:
I have been having a debate with a coleague at work about C# vs. VB.net.

He is determined that VB is a toy and that C# is so much better on
performance wise.

I told him that I don't believe that and from all that I had seen in
conversations/research, the differences seem to be trivial, yet VB.NET
has
more IDE support and is frankly easier to use, unless you are from a C
background in which case C# would be the natural choice.

He said that just in doing an empty loop, that the VB code was a
different
from the C# code and underperformed it.

I am kind of aggravated by the prevelent choice of so many people using
C#
just out of arrogance, or intimidation by the seemingly
"better-than-thou"
attitudes from many from the non-VB camp.

Any comments on this? Links to some numbers/statistics to prove that any
differences would be trivial and that VB would be just as good as C#--and
considering that we are a VB shop--would be the more logical choice for a
rewrite, would also be appreciated.

Thanks,

Shane

Nov 21 '05 #6
If he's really that concerned about performance, he shouldn't be using any
intermediate compiled language, be it a .NET language, VB Classic, or Java.
He should be writing in straight C or C++ at the most. All languages that
perform intermediate compilation for runtime incur a significant overhead at
runtime to finish the compilation to machine language. This is the tradeoff
required for Object Orientation, true Garbage Collection, and all the other
productivity enhancements we have.

Both C# and VB.Net are simply preprocessors for the .NET intermediate
language and have different constructs for doing the same job. As for such
items as operator overloading, VB.Net is syntactically behind C#, but this
will change with the release of VB and C# 2005 - both languages will be
pretty much equivalent at this point. MS put a lot of effort into C# in
..NET 1.0 and really didn't emphasize the VB language other than to make it
work on .NET. This is why there are still a lot of VB programmers who
haven't upgraded/converted to .NET. VB 2005, which is currently in beta,
corrects this marketing slight.

Mike Ober.

"SStory" <Th*******@TAKEOUTTHISSPAMBUSTERsofthome.net> wrote in message
news:Ol**************@TK2MSFTNGP11.phx.gbl...
I have been having a debate with a coleague at work about C# vs. VB.net.

He is determined that VB is a toy and that C# is so much better on
performance wise.

I told him that I don't believe that and from all that I had seen in
conversations/research, the differences seem to be trivial, yet VB.NET has
more IDE support and is frankly easier to use, unless you are from a C
background in which case C# would be the natural choice.

He said that just in doing an empty loop, that the VB code was a different
from the C# code and underperformed it.

I am kind of aggravated by the prevelent choice of so many people using C#
just out of arrogance, or intimidation by the seemingly "better-than-thou"
attitudes from many from the non-VB camp.

Any comments on this? Links to some numbers/statistics to prove that any
differences would be trivial and that VB would be just as good as C#--and
considering that we are a VB shop--would be the more logical choice for a
rewrite, would also be appreciated.

Thanks,

Shane


Nov 21 '05 #7
From our experience writing converters (VB to C# and C# to VB), there is
virtually no difference in the expressive capability of these languages. It
is purely a matter of style.

C# allows 'unsafe' code - which is frowned upon and almost never used
anyway. VB's IDE features within Visual Studio seem to always be one step
beyond the current C# IDE features, but it's very easy to work with either
language. VB also offers many ways of doing certain things - you may view
this as an advantage or a disadvantage.


"SStory" wrote:
I have been having a debate with a coleague at work about C# vs. VB.net.

He is determined that VB is a toy and that C# is so much better on
performance wise.

I told him that I don't believe that and from all that I had seen in
conversations/research, the differences seem to be trivial, yet VB.NET has
more IDE support and is frankly easier to use, unless you are from a C
background in which case C# would be the natural choice.

He said that just in doing an empty loop, that the VB code was a different
from the C# code and underperformed it.

I am kind of aggravated by the prevelent choice of so many people using C#
just out of arrogance, or intimidation by the seemingly "better-than-thou"
attitudes from many from the non-VB camp.

Any comments on this? Links to some numbers/statistics to prove that any
differences would be trivial and that VB would be just as good as C#--and
considering that we are a VB shop--would be the more logical choice for a
rewrite, would also be appreciated.

Thanks,

Shane

Nov 21 '05 #8
Shane,

Do the following
Go in your IDE to
Tools -> Options -> Project -> VBDefaults
Set there Option Strict (And Explicit) too On

Open a new VBNet Window Application set your Debug mode to Release and start
debug
Open now a new C# Window Application and set agan your Debug mode to Release
and start debug

Go to the explorer and show from both created objects the exe using
bin\obj\release

Probably is than your discussion closed for a long time.
Or maybe you start it than why he is not using VBNet
(Not that it proves something however you will probably the same be suprised
as I was some days ago)

:-)

Cor
Nov 21 '05 #9
Alejandro,
use whatever you feel, i would like that we were able to mix clases in
differents languages in the same project.

That is not any problem, beside you did things as using two classes which
have the same name in uper and lower case in C#.

Just add the C# project in your IDE as a project to the VB project.(third
tab of the reference box)
And use them as any other namespace.

I hope this helps?

Cor
Nov 21 '05 #10
Bernie,

Can you use next times cars in your methaphors, this is to deep for me.

:-)

Cor
Nov 21 '05 #11
Michael,

In *my* opinion is what you write about intermidiate code an often used
fable and by writing it becomes more and more truth.

Intermidiate code can speed up processes because without intermidiate code
on microprocessors the programs would be fast very huge (It is the same as
making programs without procedures whatever they are in, what in fact
intermidiate code is).

This what you write goes for real small thight to the hardware bounded
programs.

As quick as it becomes business solutions the intermidiate code can speed
up.

However just my thought,

Cor
Nov 21 '05 #12
I corrected this wrong
Just add the C# project in your IDE as a project to the VB project.(third
tab of the reference box)
And use them as any other namespace.

Just add the C# project in your IDE as a project to the VB project.
Set a reference to it (third tab of the reference box)
And use them as any other namespace.

Nov 21 '05 #13
Shane,

Forgot even this parts
Do the following
Go in your IDE to
Tools -> Options -> Project -> VBDefaults
Set there Option Strict (And Explicit) too On


The only thing you have to do is this.

Open a new VBNet Window Application set your Debug mode to Release and
start debug
Open now a new C# Window Application and set agan your Debug mode to Release
and start debug

Go to the explorer and show from both created objects the exe using
bin\obj\release

Some weeks ago I wrote that this first part has no direct influence on the
exe and now I make this mistake

stupid me.

Cor
Nov 21 '05 #14
Hello Shane,

Here is a link to an excellent technical article on MSDN - Visual Basic
Internals:

http://msdn.microsoft.com/library/de...TInternals.asp
--
Mike

Mike McIntyre
Visual Basic MVP
www.getdotnetcode.com

"SStory" <Th*******@TAKEOUTTHISSPAMBUSTERsofthome.net> wrote in message
news:Ol**************@TK2MSFTNGP11.phx.gbl...
I have been having a debate with a coleague at work about C# vs. VB.net.

He is determined that VB is a toy and that C# is so much better on
performance wise.

I told him that I don't believe that and from all that I had seen in
conversations/research, the differences seem to be trivial, yet VB.NET has
more IDE support and is frankly easier to use, unless you are from a C
background in which case C# would be the natural choice.

He said that just in doing an empty loop, that the VB code was a different
from the C# code and underperformed it.

I am kind of aggravated by the prevelent choice of so many people using C#
just out of arrogance, or intimidation by the seemingly "better-than-thou"
attitudes from many from the non-VB camp.

Any comments on this? Links to some numbers/statistics to prove that any
differences would be trivial and that VB would be just as good as C#--and
considering that we are a VB shop--would be the more logical choice for a
rewrite, would also be appreciated.

Thanks,

Shane

Nov 21 '05 #15
Great article Mike. I'd say that one pretty much answers the question.
This paragraph is what sums up the article for those who don't want to read
the whole thing.

"Comparing compilers requires an understanding of the default behavior of
each compiler to ensure that equivalent options are being used. Similar code
segments compiled with dissimilar compiler options can have drastically
different performance characteristics. But as will be shown in the remainder
of this section, Visual Basic .NET code performs identically to C# code when
both are compiled with equivalent options."

Chris
"Mike McIntyre" <mi****@dotnetshowandtell.com> wrote in message
news:uH****************@TK2MSFTNGP09.phx.gbl...
Hello Shane,

Here is a link to an excellent technical article on MSDN - Visual Basic
Internals:

http://msdn.microsoft.com/library/de...TInternals.asp
--
Mike

Mike McIntyre
Visual Basic MVP
www.getdotnetcode.com

"SStory" <Th*******@TAKEOUTTHISSPAMBUSTERsofthome.net> wrote in message
news:Ol**************@TK2MSFTNGP11.phx.gbl...
I have been having a debate with a coleague at work about C# vs. VB.net.

He is determined that VB is a toy and that C# is so much better on
performance wise.

I told him that I don't believe that and from all that I had seen in
conversations/research, the differences seem to be trivial, yet VB.NET
has
more IDE support and is frankly easier to use, unless you are from a C
background in which case C# would be the natural choice.

He said that just in doing an empty loop, that the VB code was a
different
from the C# code and underperformed it.

I am kind of aggravated by the prevelent choice of so many people using
C#
just out of arrogance, or intimidation by the seemingly
"better-than-thou"
attitudes from many from the non-VB camp.

Any comments on this? Links to some numbers/statistics to prove that any
differences would be trivial and that VB would be just as good as C#--and
considering that we are a VB shop--would be the more logical choice for a
rewrite, would also be appreciated.

Thanks,

Shane


Nov 21 '05 #16
Hi Cor,

OK, let's talk about a Lexus v the Acura! But, seriously, Cor, I don't
think there are too many things that are too deep for you!

Bernie

"Cor Ligthert" <no************@planet.nl> wrote in message
news:%2****************@tk2msftngp13.phx.gbl...
Bernie,

Can you use next times cars in your methaphors, this is to deep for me.

:-)

Cor

Nov 21 '05 #17
Chris,

I find the page as well very good.

Did you try what I showed because I see no reaction.

Cor
Nov 21 '05 #18
Mike, you can "pre-JIT" your IL code with NGEN removing the first paragraph
below.

As for the rest of your comments, I believe that this is just your opinion.
"Michael D. Ober" <obermd.@.alum.mit.edu.nospam> wrote in message
news:eF**************@TK2MSFTNGP14.phx.gbl...
If he's really that concerned about performance, he shouldn't be using any
intermediate compiled language, be it a .NET language, VB Classic, or
Java.
He should be writing in straight C or C++ at the most. All languages that
perform intermediate compilation for runtime incur a significant overhead
at
runtime to finish the compilation to machine language. This is the
tradeoff
required for Object Orientation, true Garbage Collection, and all the
other
productivity enhancements we have.

Both C# and VB.Net are simply preprocessors for the .NET intermediate
language and have different constructs for doing the same job. As for
such
items as operator overloading, VB.Net is syntactically behind C#, but this
will change with the release of VB and C# 2005 - both languages will be
pretty much equivalent at this point. MS put a lot of effort into C# in
.NET 1.0 and really didn't emphasize the VB language other than to make it
work on .NET. This is why there are still a lot of VB programmers who
haven't upgraded/converted to .NET. VB 2005, which is currently in beta,
corrects this marketing slight.

Mike Ober.

"SStory" <Th*******@TAKEOUTTHISSPAMBUSTERsofthome.net> wrote in message
news:Ol**************@TK2MSFTNGP11.phx.gbl...
I have been having a debate with a coleague at work about C# vs. VB.net.

He is determined that VB is a toy and that C# is so much better on
performance wise.

I told him that I don't believe that and from all that I had seen in
conversations/research, the differences seem to be trivial, yet VB.NET
has
more IDE support and is frankly easier to use, unless you are from a C
background in which case C# would be the natural choice.

He said that just in doing an empty loop, that the VB code was a
different
from the C# code and underperformed it.

I am kind of aggravated by the prevelent choice of so many people using
C#
just out of arrogance, or intimidation by the seemingly
"better-than-thou"
attitudes from many from the non-VB camp.

Any comments on this? Links to some numbers/statistics to prove that any
differences would be trivial and that VB would be just as good as C#--and
considering that we are a VB shop--would be the more logical choice for a
rewrite, would also be appreciated.

Thanks,

Shane


Nov 21 '05 #19
I think Neil makes a great point here - albiet somewhat indirectly
http://blog.opennetcf.org/ncowburn/P...aed583f52.aspx

--
W.G. Ryan MVP (Windows Embedded)

TiBA Solutions
www.tibasolutions.com | www.devbuzz.com | www.knowdotnet.com
"SStory" <Th*******@TAKEOUTTHISSPAMBUSTERsofthome.net> wrote in message
news:Ol**************@TK2MSFTNGP11.phx.gbl...
I have been having a debate with a coleague at work about C# vs. VB.net.

He is determined that VB is a toy and that C# is so much better on
performance wise.

I told him that I don't believe that and from all that I had seen in
conversations/research, the differences seem to be trivial, yet VB.NET has
more IDE support and is frankly easier to use, unless you are from a C
background in which case C# would be the natural choice.

He said that just in doing an empty loop, that the VB code was a different
from the C# code and underperformed it.

I am kind of aggravated by the prevelent choice of so many people using C#
just out of arrogance, or intimidation by the seemingly "better-than-thou"
attitudes from many from the non-VB camp.

Any comments on this? Links to some numbers/statistics to prove that any
differences would be trivial and that VB would be just as good as C#--and
considering that we are a VB shop--would be the more logical choice for a
rewrite, would also be appreciated.

Thanks,

Shane

Nov 21 '05 #20
Thanks for all the comments.

"SStory" <Th*******@TAKEOUTTHISSPAMBUSTERsofthome.net> wrote in message
news:Ol**************@TK2MSFTNGP11.phx.gbl...
I have been having a debate with a coleague at work about C# vs. VB.net.

He is determined that VB is a toy and that C# is so much better on
performance wise.

I told him that I don't believe that and from all that I had seen in
conversations/research, the differences seem to be trivial, yet VB.NET has
more IDE support and is frankly easier to use, unless you are from a C
background in which case C# would be the natural choice.

He said that just in doing an empty loop, that the VB code was a different
from the C# code and underperformed it.

I am kind of aggravated by the prevelent choice of so many people using C#
just out of arrogance, or intimidation by the seemingly "better-than-thou"
attitudes from many from the non-VB camp.

Any comments on this? Links to some numbers/statistics to prove that any
differences would be trivial and that VB would be just as good as C#--and
considering that we are a VB shop--would be the more logical choice for a
rewrite, would also be appreciated.

Thanks,

Shane

Nov 21 '05 #21

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

Similar topics

3
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)...
2
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...
3
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...
0
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. ...
1
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...
4
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...
1
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 ...
2
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...
3
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...
0
by: ryjfgjl | last post by:
ExcelToDatabase: batch import excel into database automatically...
1
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
0
by: Vimpel783 | last post by:
Hello! Guys, I found this code on the Internet, but I need to modify it a little. It works well, the problem is this: Data is sent from only one cell, in this case B5, but it is necessary that data...
0
by: jfyes | last post by:
As a hardware engineer, after seeing that CEIWEI recently released a new tool for Modbus RTU Over TCP/UDP filtering and monitoring, I actively went to its official website to take a look. It turned...
1
by: PapaRatzi | last post by:
Hello, I am teaching myself MS Access forms design and Visual Basic. I've created a table to capture a list of Top 30 singles and forms to capture new entries. The final step is a form (unbound)...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
1
by: Defcon1945 | last post by:
I'm trying to learn Python using Pycharm but import shutil doesn't work
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 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 former...

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.