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

C# || operator to VB

on http://www.bsdg.org/2005/01/empty-dataset.shtml
I came across this C# code:

bool Result = ( aDataset == null ) || ( aDataset.Tables.Count == 0 );

I think I know what it is supposed to do!
How is this coded in VB

Nov 19 '05 #1
12 1174
Looks like a logical OR to me...

Dim Result As Boolean = (aDataset Is Nothing) Or (aDataset.Tables.Count = 0)

Sets Result to true if aDataset is Nothing or if there are zero tables in
aDataset
Sets Result to false if aDataset has been initialized or if it has at least
one table.

"hansiman" <ha***@hotmail.com> wrote in message
news:7k********************************@4ax.com...
on http://www.bsdg.org/2005/01/empty-dataset.shtml
I came across this C# code:

bool Result = ( aDataset == null ) || ( aDataset.Tables.Count == 0 );

I think I know what it is supposed to do!
How is this coded in VB


Nov 19 '05 #2
Actually Ken that's not quite right. Your code would fail if aDataSet is
Nothing because both clauses are evaluated and nothing cannot be evaluated.
The more precise transation would be to use the OrElse statment, which short
circuits if aDataSet is nothing, therefore the second clause would not be
evaluated and there would be no error.

Dim Result as Boolean = IsNull(aDataSet) OrElse (aDataSet.Tables.Count = 0)

--
I hope this helps,
Steve C. Orr, MCSD, MVP
http://SteveOrr.net
"Ken Cox [Microsoft MVP]" <BA************@sympatico.ca> wrote in message
news:Oe**************@tk2msftngp13.phx.gbl...
Looks like a logical OR to me...

Dim Result As Boolean = (aDataset Is Nothing) Or (aDataset.Tables.Count =
0)

Sets Result to true if aDataset is Nothing or if there are zero tables in
aDataset
Sets Result to false if aDataset has been initialized or if it has at
least one table.

"hansiman" <ha***@hotmail.com> wrote in message
news:7k********************************@4ax.com...
on http://www.bsdg.org/2005/01/empty-dataset.shtml
I came across this C# code:

bool Result = ( aDataset == null ) || ( aDataset.Tables.Count == 0 );

I think I know what it is supposed to do!
How is this coded in VB

Nov 19 '05 #3
Actually, it's an OrElse as it's short-circuit

You should always be using OrElse when doing logical comparisons instead of
Or...or should only be used as a bit operator..

Karl

--
MY ASP.Net tutorials
http://www.openmymind.net/
"Ken Cox [Microsoft MVP]" <BA************@sympatico.ca> wrote in message
news:Oe**************@tk2msftngp13.phx.gbl...
Looks like a logical OR to me...

Dim Result As Boolean = (aDataset Is Nothing) Or (aDataset.Tables.Count = 0)
Sets Result to true if aDataset is Nothing or if there are zero tables in
aDataset
Sets Result to false if aDataset has been initialized or if it has at least one table.

"hansiman" <ha***@hotmail.com> wrote in message
news:7k********************************@4ax.com...
on http://www.bsdg.org/2005/01/empty-dataset.shtml
I came across this C# code:

bool Result = ( aDataset == null ) || ( aDataset.Tables.Count == 0 );

I think I know what it is supposed to do!
How is this coded in VB

Nov 19 '05 #4
thanks a lot :-)

Ehhh. I'm using IsDbNull not IsNull - seem to work.

NB I enjoy your aspnetpro column.

On Mon, 7 Feb 2005 14:57:46 -0800, "Steve C. Orr [MVP, MCSD]"
<St***@Orr.net> wrote:
Actually Ken that's not quite right. Your code would fail if aDataSet is
Nothing because both clauses are evaluated and nothing cannot be evaluated.
The more precise transation would be to use the OrElse statment, which short
circuits if aDataSet is nothing, therefore the second clause would not be
evaluated and there would be no error.

Dim Result as Boolean = IsNull(aDataSet) OrElse (aDataSet.Tables.Count = 0)


Nov 19 '05 #5
Ha!

I should have known better than to hazard a response about C#! Thanks Steve
for setting it straight.

Ken

"Steve C. Orr [MVP, MCSD]" <St***@Orr.net> wrote in message
news:%2****************@TK2MSFTNGP15.phx.gbl...
Actually Ken that's not quite right. Your code would fail if aDataSet is
Nothing because both clauses are evaluated and nothing cannot be
evaluated. The more precise transation would be to use the OrElse
statment, which short circuits if aDataSet is nothing, therefore the
second clause would not be evaluated and there would be no error.

Dim Result as Boolean = IsNull(aDataSet) OrElse (aDataSet.Tables.Count =
0)

--
I hope this helps,
Steve C. Orr, MCSD, MVP
http://SteveOrr.net
"Ken Cox [Microsoft MVP]" <BA************@sympatico.ca> wrote in message
news:Oe**************@tk2msftngp13.phx.gbl...
Looks like a logical OR to me...

Dim Result As Boolean = (aDataset Is Nothing) Or (aDataset.Tables.Count =
0)

Sets Result to true if aDataset is Nothing or if there are zero tables in
aDataset
Sets Result to false if aDataset has been initialized or if it has at
least one table.

"hansiman" <ha***@hotmail.com> wrote in message
news:7k********************************@4ax.com...
on http://www.bsdg.org/2005/01/empty-dataset.shtml
I came across this C# code:

bool Result = ( aDataset == null ) || ( aDataset.Tables.Count == 0 );

I think I know what it is supposed to do!
How is this coded in VB



Nov 19 '05 #6
Thanks Karl! From now on I'll leave the C# questions to the guys who know
it! <grin>
"Karl Seguin" <karl REMOVE @ REMOVE openmymind REMOVEMETOO . ANDME net>
wrote in message news:%2****************@TK2MSFTNGP12.phx.gbl...
Actually, it's an OrElse as it's short-circuit

You should always be using OrElse when doing logical comparisons instead
of
Or...or should only be used as a bit operator..

Karl

--
MY ASP.Net tutorials
http://www.openmymind.net/
"Ken Cox [Microsoft MVP]" <BA************@sympatico.ca> wrote in message
news:Oe**************@tk2msftngp13.phx.gbl...
Looks like a logical OR to me...

Dim Result As Boolean = (aDataset Is Nothing) Or (aDataset.Tables.Count =

0)

Sets Result to true if aDataset is Nothing or if there are zero tables in
aDataset
Sets Result to false if aDataset has been initialized or if it has at

least
one table.

"hansiman" <ha***@hotmail.com> wrote in message
news:7k********************************@4ax.com...
> on http://www.bsdg.org/2005/01/empty-dataset.shtml
> I came across this C# code:
>
> bool Result = ( aDataset == null ) || ( aDataset.Tables.Count == 0 );
>
> I think I know what it is supposed to do!
> How is this coded in VB
>



Nov 19 '05 #7
Well, there IS one other exception to that rule, Karl. If you have a
specific reason for needing to evaluate BOTH experssions (such as function
calls that return booleans, but must be made), you should also use the Or
operator.

--
HTH,

Kevin Spencer
Microsoft MVP
..Net Developer
Neither a follower nor a lender be.

"Karl Seguin" <karl REMOVE @ REMOVE openmymind REMOVEMETOO . ANDME net>
wrote in message news:%2****************@TK2MSFTNGP12.phx.gbl...
Actually, it's an OrElse as it's short-circuit

You should always be using OrElse when doing logical comparisons instead
of
Or...or should only be used as a bit operator..

Karl

--
MY ASP.Net tutorials
http://www.openmymind.net/
"Ken Cox [Microsoft MVP]" <BA************@sympatico.ca> wrote in message
news:Oe**************@tk2msftngp13.phx.gbl...
Looks like a logical OR to me...

Dim Result As Boolean = (aDataset Is Nothing) Or (aDataset.Tables.Count =

0)

Sets Result to true if aDataset is Nothing or if there are zero tables in
aDataset
Sets Result to false if aDataset has been initialized or if it has at

least
one table.

"hansiman" <ha***@hotmail.com> wrote in message
news:7k********************************@4ax.com...
> on http://www.bsdg.org/2005/01/empty-dataset.shtml
> I came across this C# code:
>
> bool Result = ( aDataset == null ) || ( aDataset.Tables.Count == 0 );
>
> I think I know what it is supposed to do!
> How is this coded in VB
>


Nov 19 '05 #8
Kevin:
My personal opinion is that this leads to
hard-to-read-gonna-cause-problems-down-the-road code. Far better to nest
the if statement in those rare instances. But ur right..it could be used
for that.

Karl
--
MY ASP.Net tutorials
http://www.openmymind.net/
"Kevin Spencer" <ke***@DIESPAMMERSDIEtakempis.com> wrote in message
news:uH*************@TK2MSFTNGP12.phx.gbl...
Well, there IS one other exception to that rule, Karl. If you have a
specific reason for needing to evaluate BOTH experssions (such as function
calls that return booleans, but must be made), you should also use the Or
operator.

--
HTH,

Kevin Spencer
Microsoft MVP
.Net Developer
Neither a follower nor a lender be.

"Karl Seguin" <karl REMOVE @ REMOVE openmymind REMOVEMETOO . ANDME net>
wrote in message news:%2****************@TK2MSFTNGP12.phx.gbl...
Actually, it's an OrElse as it's short-circuit

You should always be using OrElse when doing logical comparisons instead
of
Or...or should only be used as a bit operator..

Karl

--
MY ASP.Net tutorials
http://www.openmymind.net/
"Ken Cox [Microsoft MVP]" <BA************@sympatico.ca> wrote in message
news:Oe**************@tk2msftngp13.phx.gbl...
Looks like a logical OR to me...

Dim Result As Boolean = (aDataset Is Nothing) Or (aDataset.Tables.Count =
0)

Sets Result to true if aDataset is Nothing or if there are zero tables

in aDataset
Sets Result to false if aDataset has been initialized or if it has at

least
one table.

"hansiman" <ha***@hotmail.com> wrote in message
news:7k********************************@4ax.com...
> on http://www.bsdg.org/2005/01/empty-dataset.shtml
> I came across this C# code:
>
> bool Result = ( aDataset == null ) || ( aDataset.Tables.Count == 0 );
>
> I think I know what it is supposed to do!
> How is this coded in VB
>



Nov 19 '05 #9
I agree this leads to hard-to-read code that is prone to errors, and
therefore should be avoided.
This was the argument for having Or function like OrElse does (so that
OrElse wouldn't be necessary) but that battle was lost.
:-(

--
I hope this helps,
Steve C. Orr, MCSD, MVP
http://SteveOrr.net
"Karl Seguin" <karl REMOVE @ REMOVE openmymind REMOVEMETOO . ANDME net>
wrote in message news:uM**************@TK2MSFTNGP12.phx.gbl...
Kevin:
My personal opinion is that this leads to
hard-to-read-gonna-cause-problems-down-the-road code. Far better to nest
the if statement in those rare instances. But ur right..it could be used
for that.

Karl
--
MY ASP.Net tutorials
http://www.openmymind.net/
"Kevin Spencer" <ke***@DIESPAMMERSDIEtakempis.com> wrote in message
news:uH*************@TK2MSFTNGP12.phx.gbl...
Well, there IS one other exception to that rule, Karl. If you have a
specific reason for needing to evaluate BOTH experssions (such as
function
calls that return booleans, but must be made), you should also use the Or
operator.

--
HTH,

Kevin Spencer
Microsoft MVP
.Net Developer
Neither a follower nor a lender be.

"Karl Seguin" <karl REMOVE @ REMOVE openmymind REMOVEMETOO . ANDME net>
wrote in message news:%2****************@TK2MSFTNGP12.phx.gbl...
> Actually, it's an OrElse as it's short-circuit
>
> You should always be using OrElse when doing logical comparisons
> instead
> of
> Or...or should only be used as a bit operator..
>
> Karl
>
> --
> MY ASP.Net tutorials
> http://www.openmymind.net/
>
>
> "Ken Cox [Microsoft MVP]" <BA************@sympatico.ca> wrote in
> message
> news:Oe**************@tk2msftngp13.phx.gbl...
>> Looks like a logical OR to me...
>>
>> Dim Result As Boolean = (aDataset Is Nothing) Or
>> (aDataset.Tables.Count = > 0)
>>
>> Sets Result to true if aDataset is Nothing or if there are zero tables in >> aDataset
>> Sets Result to false if aDataset has been initialized or if it has at
> least
>> one table.
>>
>> "hansiman" <ha***@hotmail.com> wrote in message
>> news:7k********************************@4ax.com...
>> > on http://www.bsdg.org/2005/01/empty-dataset.shtml
>> > I came across this C# code:
>> >
>> > bool Result = ( aDataset == null ) || ( aDataset.Tables.Count ==
>> > 0 );
>> >
>> > I think I know what it is supposed to do!
>> > How is this coded in VB
>> >
>>
>
>



Nov 19 '05 #10
Well, heck guys, I only said that you could. Just covering all the bases.

--
HTH,

Kevin Spencer
Microsoft MVP
..Net Developer
Neither a follower nor a lender be.

"Karl Seguin" <karl REMOVE @ REMOVE openmymind REMOVEMETOO . ANDME net>
wrote in message news:uM**************@TK2MSFTNGP12.phx.gbl...
Kevin:
My personal opinion is that this leads to
hard-to-read-gonna-cause-problems-down-the-road code. Far better to nest
the if statement in those rare instances. But ur right..it could be used
for that.

Karl
--
MY ASP.Net tutorials
http://www.openmymind.net/
"Kevin Spencer" <ke***@DIESPAMMERSDIEtakempis.com> wrote in message
news:uH*************@TK2MSFTNGP12.phx.gbl...
Well, there IS one other exception to that rule, Karl. If you have a
specific reason for needing to evaluate BOTH experssions (such as
function
calls that return booleans, but must be made), you should also use the Or
operator.

--
HTH,

Kevin Spencer
Microsoft MVP
.Net Developer
Neither a follower nor a lender be.

"Karl Seguin" <karl REMOVE @ REMOVE openmymind REMOVEMETOO . ANDME net>
wrote in message news:%2****************@TK2MSFTNGP12.phx.gbl...
> Actually, it's an OrElse as it's short-circuit
>
> You should always be using OrElse when doing logical comparisons
> instead
> of
> Or...or should only be used as a bit operator..
>
> Karl
>
> --
> MY ASP.Net tutorials
> http://www.openmymind.net/
>
>
> "Ken Cox [Microsoft MVP]" <BA************@sympatico.ca> wrote in
> message
> news:Oe**************@tk2msftngp13.phx.gbl...
>> Looks like a logical OR to me...
>>
>> Dim Result As Boolean = (aDataset Is Nothing) Or
>> (aDataset.Tables.Count = > 0)
>>
>> Sets Result to true if aDataset is Nothing or if there are zero tables in >> aDataset
>> Sets Result to false if aDataset has been initialized or if it has at
> least
>> one table.
>>
>> "hansiman" <ha***@hotmail.com> wrote in message
>> news:7k********************************@4ax.com...
>> > on http://www.bsdg.org/2005/01/empty-dataset.shtml
>> > I came across this C# code:
>> >
>> > bool Result = ( aDataset == null ) || ( aDataset.Tables.Count ==
>> > 0 );
>> >
>> > I think I know what it is supposed to do!
>> > How is this coded in VB
>> >
>>
>
>



Nov 19 '05 #11
Don't worry Kevin, we weren't ganging up on you!
We agree with you. We just didn't want folks to go thinking it was a good
idea to go with that kind of design. But you probably already knew that.

--
I hope this helps,
Steve C. Orr, MCSD, MVP
http://SteveOrr.net
"Kevin Spencer" <ke***@DIESPAMMERSDIEtakempis.com> wrote in message
news:eR*************@TK2MSFTNGP15.phx.gbl...
Well, heck guys, I only said that you could. Just covering all the bases.

--
HTH,

Kevin Spencer
Microsoft MVP
.Net Developer
Neither a follower nor a lender be.

"Karl Seguin" <karl REMOVE @ REMOVE openmymind REMOVEMETOO . ANDME net>
wrote in message news:uM**************@TK2MSFTNGP12.phx.gbl...
Kevin:
My personal opinion is that this leads to
hard-to-read-gonna-cause-problems-down-the-road code. Far better to nest
the if statement in those rare instances. But ur right..it could be used
for that.

Karl
--
MY ASP.Net tutorials
http://www.openmymind.net/
"Kevin Spencer" <ke***@DIESPAMMERSDIEtakempis.com> wrote in message
news:uH*************@TK2MSFTNGP12.phx.gbl...
Well, there IS one other exception to that rule, Karl. If you have a
specific reason for needing to evaluate BOTH experssions (such as
function
calls that return booleans, but must be made), you should also use the
Or
operator.

--
HTH,

Kevin Spencer
Microsoft MVP
.Net Developer
Neither a follower nor a lender be.

"Karl Seguin" <karl REMOVE @ REMOVE openmymind REMOVEMETOO . ANDME net>
wrote in message news:%2****************@TK2MSFTNGP12.phx.gbl...
> Actually, it's an OrElse as it's short-circuit
>
> You should always be using OrElse when doing logical comparisons
> instead
> of
> Or...or should only be used as a bit operator..
>
> Karl
>
> --
> MY ASP.Net tutorials
> http://www.openmymind.net/
>
>
> "Ken Cox [Microsoft MVP]" <BA************@sympatico.ca> wrote in
> message
> news:Oe**************@tk2msftngp13.phx.gbl...
>> Looks like a logical OR to me...
>>
>> Dim Result As Boolean = (aDataset Is Nothing) Or
>> (aDataset.Tables.Count

=
> 0)
>>
>> Sets Result to true if aDataset is Nothing or if there are zero
>> tables

in
>> aDataset
>> Sets Result to false if aDataset has been initialized or if it has at
> least
>> one table.
>>
>> "hansiman" <ha***@hotmail.com> wrote in message
>> news:7k********************************@4ax.com...
>> > on http://www.bsdg.org/2005/01/empty-dataset.shtml
>> > I came across this C# code:
>> >
>> > bool Result = ( aDataset == null ) || ( aDataset.Tables.Count ==
>> > 0 );
>> >
>> > I think I know what it is supposed to do!
>> > How is this coded in VB
>> >
>>
>
>



Nov 19 '05 #12
I understand, Steve. :)

--
HTH,

Kevin Spencer
Microsoft MVP
..Net Developer
Neither a follower nor a lender be.

"Steve C. Orr [MVP, MCSD]" <St***@Orr.net> wrote in message
news:ub**************@tk2msftngp13.phx.gbl...
Don't worry Kevin, we weren't ganging up on you!
We agree with you. We just didn't want folks to go thinking it was a good
idea to go with that kind of design. But you probably already knew that.

--
I hope this helps,
Steve C. Orr, MCSD, MVP
http://SteveOrr.net
"Kevin Spencer" <ke***@DIESPAMMERSDIEtakempis.com> wrote in message
news:eR*************@TK2MSFTNGP15.phx.gbl...
Well, heck guys, I only said that you could. Just covering all the bases.

--
HTH,

Kevin Spencer
Microsoft MVP
.Net Developer
Neither a follower nor a lender be.

"Karl Seguin" <karl REMOVE @ REMOVE openmymind REMOVEMETOO . ANDME net>
wrote in message news:uM**************@TK2MSFTNGP12.phx.gbl...
Kevin:
My personal opinion is that this leads to
hard-to-read-gonna-cause-problems-down-the-road code. Far better to
nest
the if statement in those rare instances. But ur right..it could be
used
for that.

Karl
--
MY ASP.Net tutorials
http://www.openmymind.net/
"Kevin Spencer" <ke***@DIESPAMMERSDIEtakempis.com> wrote in message
news:uH*************@TK2MSFTNGP12.phx.gbl...
Well, there IS one other exception to that rule, Karl. If you have a
specific reason for needing to evaluate BOTH experssions (such as
function
calls that return booleans, but must be made), you should also use the
Or
operator.

--
HTH,

Kevin Spencer
Microsoft MVP
.Net Developer
Neither a follower nor a lender be.

"Karl Seguin" <karl REMOVE @ REMOVE openmymind REMOVEMETOO . ANDME net>
wrote in message news:%2****************@TK2MSFTNGP12.phx.gbl...
> Actually, it's an OrElse as it's short-circuit
>
> You should always be using OrElse when doing logical comparisons
> instead
> of
> Or...or should only be used as a bit operator..
>
> Karl
>
> --
> MY ASP.Net tutorials
> http://www.openmymind.net/
>
>
> "Ken Cox [Microsoft MVP]" <BA************@sympatico.ca> wrote in
> message
> news:Oe**************@tk2msftngp13.phx.gbl...
>> Looks like a logical OR to me...
>>
>> Dim Result As Boolean = (aDataset Is Nothing) Or
>> (aDataset.Tables.Count
=
> 0)
>>
>> Sets Result to true if aDataset is Nothing or if there are zero
>> tables
in
>> aDataset
>> Sets Result to false if aDataset has been initialized or if it has
>> at
> least
>> one table.
>>
>> "hansiman" <ha***@hotmail.com> wrote in message
>> news:7k********************************@4ax.com...
>> > on http://www.bsdg.org/2005/01/empty-dataset.shtml
>> > I came across this C# code:
>> >
>> > bool Result = ( aDataset == null ) || ( aDataset.Tables.Count ==
>> > 0 );
>> >
>> > I think I know what it is supposed to do!
>> > How is this coded in VB
>> >
>>
>
>



Nov 19 '05 #13

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

Similar topics

7
by: Paul Davis | last post by:
I'd like to overload 'comma' to define a concatenation operator for integer-like classes. I've got some first ideas, but I'd appreciate a sanity check. The concatenation operator needs to so...
1
by: joesoap | last post by:
Hi can anybody please tell me what is wrong with my ostream operator??? this is the output i get using the 3 attached files. this is the output after i run assignment2 -joesoap #include...
5
by: Jason | last post by:
Hello. I am trying to learn how operator overloading works so I wrote a simple class to help me practice. I understand the basic opertoar overload like + - / *, but when I try to overload more...
0
by: Martin Magnusson | last post by:
I have defined a number of custom stream buffers with corresponding in and out streams for IO operations in my program, such as IO::output, IO::warning and IO::debug. Now, the debug stream should...
3
by: Sensei | last post by:
Hi. I have a problem with a C++ code I can't resolve, or better, I can't see what the problem should be! Here's an excerpt of the incriminated code: === bspalgo.cpp // THAT'S THE BAD...
6
by: YUY0x7 | last post by:
Hi, I am having a bit of trouble with a specialization of operator<<. Here goes: class MyStream { }; template <typename T> MyStream& operator<<(MyStream& lhs, T const &)
3
by: gugdias | last post by:
I'm coding a simple matrix class, which is resulting in the following error when compiling with g++ 3.4.2 (mingw-special): * declaration of `operator/' as non-function * expected `;' before '<'...
5
by: raylopez99 | last post by:
I need an example of a managed overloaded assignment operator for a reference class, so I can equate two classes A1 and A2, say called ARefClass, in this manner: A1=A2;. For some strange reason...
8
by: valerij | last post by:
Yes, hi How to write "operator +" and "operator =" functions in a class with a defined constructor? The following code demonstrates that I don't really understand how to do it... I think it has...
3
by: y-man | last post by:
Hi, I am trying to get an overloaded operator to work inside the class it works on. The situation is something like this: main.cc: #include "object.hh" #include "somefile.hh" object obj,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
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: 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
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
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...
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,...
0
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...

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.