473,583 Members | 2,875 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

BUG: Dataset Returned From A XML WebService Containing Error Data Caused Exeption To Be Thrown In A Window Form Application

Hi,

I'm working on a project which includes XML WebServices and Windows Form
application.

The Windows Form application will call the XML WebServices to retrieve data
from database. The data will be returned as DataSet.

Now, here's the problem. On .NET Framework 1.1, if any rows in the dataset
returned contain errors (marked by calling the SetColumnError( ) method or
setting the RowError property of the DataRow), I get the following error
message in the Windows Form application,

"There is an error in XML doument (x,xxxxxxx)"

If I forced the Windows Form application to run on .NET Framework 1.0,
everything works fine.

Here's the partial code for the WebService project

Code:

<WebMethod()> _
Public Function RetrieveDataSet () As DataSet
Dim ds As New DataSet
Dim dt As New DataTable
Dim row As DataRow
Dim i As Integer

dt.TableName = "TestTable"
dt.Columns.Add( "TestColumn 1", GetType(String) )
dt.Columns.Add( "TestColumn 2", GetType(Integer ))

ds.DataSetName = "TestDataSe t"
ds.Tables.Add(d t)

For i = 0 To 10
row = dt.NewRow
row("TestColumn 1") = "This is row " & i
row("TestColumn 2") = i
dt.Rows.Add(row )

' The following code trigger the error after the DataSet
' is returned to the calling Window Form application
row.SetColumnEr ror("TestColumn 1", "Error message here")
Next

Return ds
End Function

For the Windows Form application, you need to insert a datagrid control
(assumed as datagrid1). It will look something like this,

Code:

Private Sub Form1_Load(ByVa l sender As System.Object, ByVal e As
System.EventArg s) Handles MyBase.Load
Dim ws As localhost.Servi ce1
Dim ds As DataSet

Try
ws = New localhost.Servi ce1
ds = ws.RetrieveData Set

Me.DataGrid1.Se tDataBinding(ds .Tables(0), "")
Catch ex As Exception
MsgBox(ex.Messa ge)
Finally
If (Not (ws Is Nothing)) Then
ws.Dispose()
End If
End Try
End Sub
I really hope someone could help me out with this one.

Thanks in advance.

ps: Please, before anyone reply to state that I did not choose the
appropriate groups when making this post a crossposts post, please know that
I'm currently in blind on what is causing this error. Is it the WebService?
or is it the ADO .Net? or is it Windows Form application? or is it VB .Net?
Well, it has something to do with WebService as it only happens to the
DataSet returned by WebService. It also has something to do with ADO .Net as
I'm using DataSet. And it definitely has something to do with Windows Form
application as if I force the Windows Form application project to run on
..Net Framework 1.0, everything works fine.
Jul 19 '05 #1
8 2386
There is a known issue when using 1.1 on the server and
1.0 on the client side. It's because the dataset is
serialized differently for each version. So when the
client tries to deserialize it, it fails.

Jeff Levinson

Author of "Building Client/Server Applications with
VB.NET: An Example Driven Approach"
-----Original Message-----
Hi,

I'm working on a project which includes XML WebServices and Windows Formapplication.

The Windows Form application will call the XML WebServices to retrieve datafrom database. The data will be returned as DataSet.

Now, here's the problem. On .NET Framework 1.1, if any rows in the datasetreturned contain errors (marked by calling the SetColumnError( ) method orsetting the RowError property of the DataRow), I get the following errormessage in the Windows Form application,

"There is an error in XML doument (x,xxxxxxx)"

If I forced the Windows Form application to run on .NET Framework 1.0,everything works fine.

Here's the partial code for the WebService project

Code:

<WebMethod()> _
Public Function RetrieveDataSet () As DataSet
Dim ds As New DataSet
Dim dt As New DataTable
Dim row As DataRow
Dim i As Integer

dt.TableName = "TestTable"
dt.Columns.Add( "TestColumn 1", GetType(String) )
dt.Columns.Add( "TestColumn 2", GetType(Integer ))

ds.DataSetName = "TestDataSe t"
ds.Tables.Add(d t)

For i = 0 To 10
row = dt.NewRow
row("TestColumn 1") = "This is row " & i
row("TestColumn 2") = i
dt.Rows.Add(row )

' The following code trigger the error after the DataSet ' is returned to the calling Window Form application row.SetColumnEr ror("TestColumn 1", "Error message here") Next

Return ds
End Function

For the Windows Form application, you need to insert a datagrid control(assumed as datagrid1). It will look something like this,

Code:

Private Sub Form1_Load(ByVa l sender As System.Object, ByVal e AsSystem.EventAr gs) Handles MyBase.Load
Dim ws As localhost.Servi ce1
Dim ds As DataSet

Try
ws = New localhost.Servi ce1
ds = ws.RetrieveData Set

Me.DataGrid1.Se tDataBinding(ds .Tables(0), "")
Catch ex As Exception
MsgBox(ex.Messa ge)
Finally
If (Not (ws Is Nothing)) Then
ws.Dispose()
End If
End Try
End Sub
I really hope someone could help me out with this one.

Thanks in advance.

ps: Please, before anyone reply to state that I did not choose theappropriate groups when making this post a crossposts post, please know thatI'm currently in blind on what is causing this error. Is it the WebService?or is it the ADO .Net? or is it Windows Form application? or is it VB .Net?Well, it has something to do with WebService as it only happens to theDataSet returned by WebService. It also has something to do with ADO .Net asI'm using DataSet. And it definitely has something to do with Windows Formapplication as if I force the Windows Form application project to run on..Net Framework 1.0, everything works fine.
.

Jul 19 '05 #2
You're not getting the idea here. The problem now OCCURS when the server
uses .NET Framework 1.1 and the client also uses .NET Framework 1.1.

The problem is FIXED if the client uses .NET Framework 1.0

"Jeff Levinson [mcsd]" <je***********@ comcast.net> wrote in message
news:04******** *************** *****@phx.gbl.. .
There is a known issue when using 1.1 on the server and
1.0 on the client side. It's because the dataset is
serialized differently for each version. So when the
client tries to deserialize it, it fails.

Jeff Levinson

Author of "Building Client/Server Applications with
VB.NET: An Example Driven Approach"
-----Original Message-----
Hi,

I'm working on a project which includes XML WebServices

and Windows Form
application.

The Windows Form application will call the XML

WebServices to retrieve data
from database. The data will be returned as DataSet.

Now, here's the problem. On .NET Framework 1.1, if any

rows in the dataset
returned contain errors (marked by calling the

SetColumnError( ) method or
setting the RowError property of the DataRow), I get the

following error
message in the Windows Form application,

"There is an error in XML doument (x,xxxxxxx)"

If I forced the Windows Form application to run on .NET

Framework 1.0,
everything works fine.

Here's the partial code for the WebService project

Code:

<WebMethod()> _
Public Function RetrieveDataSet () As DataSet
Dim ds As New DataSet
Dim dt As New DataTable
Dim row As DataRow
Dim i As Integer

dt.TableName = "TestTable"
dt.Columns.Add( "TestColumn 1", GetType(String) )
dt.Columns.Add( "TestColumn 2", GetType(Integer ))

ds.DataSetName = "TestDataSe t"
ds.Tables.Add(d t)

For i = 0 To 10
row = dt.NewRow
row("TestColumn 1") = "This is row " & i
row("TestColumn 2") = i
dt.Rows.Add(row )

' The following code trigger the error after

the DataSet
' is returned to the calling Window Form

application
row.SetColumnEr ror("TestColumn 1", "Error

message here")
Next

Return ds
End Function

For the Windows Form application, you need to insert a

datagrid control
(assumed as datagrid1). It will look something like this,

Code:

Private Sub Form1_Load(ByVa l sender As

System.Object, ByVal e As
System.EventAr gs) Handles MyBase.Load
Dim ws As localhost.Servi ce1
Dim ds As DataSet

Try
ws = New localhost.Servi ce1
ds = ws.RetrieveData Set

Me.DataGrid1.Se tDataBinding(ds .Tables(0), "")
Catch ex As Exception
MsgBox(ex.Messa ge)
Finally
If (Not (ws Is Nothing)) Then
ws.Dispose()
End If
End Try
End Sub
I really hope someone could help me out with this one.

Thanks in advance.

ps: Please, before anyone reply to state that I did not

choose the
appropriate groups when making this post a crossposts

post, please know that
I'm currently in blind on what is causing this error. Is

it the WebService?
or is it the ADO .Net? or is it Windows Form

application? or is it VB .Net?
Well, it has something to do with WebService as it only

happens to the
DataSet returned by WebService. It also has something to

do with ADO .Net as
I'm using DataSet. And it definitely has something to do

with Windows Form
application as if I force the Windows Form application

project to run on
..Net Framework 1.0, everything works fine.
.

Jul 19 '05 #3
I (as well as others) have posted multiple times in different groups and
have yet to recieve any response on this issue. It is extremely frustrating
because it is easy to reproduce and yet I have seen no one from MS offer to
look into it or acknowlege it. It would at least be comforting to hear them
say "yes, there is a problem and we are looking into it" but I haven't even
got that yet. Being able to set RowErrors is a powerful tool but as you see,
it will not work through web services returning a dataset as it will produce
the message you indicate below.
Roger

"Programati x" <pr*********@no spam.com> wrote in message
news:Op******** ******@TK2MSFTN GP12.phx.gbl...
Hi,

I'm working on a project which includes XML WebServices and Windows Form
application.

The Windows Form application will call the XML WebServices to retrieve data from database. The data will be returned as DataSet.

Now, here's the problem. On .NET Framework 1.1, if any rows in the dataset
returned contain errors (marked by calling the SetColumnError( ) method or
setting the RowError property of the DataRow), I get the following error
message in the Windows Form application,

"There is an error in XML doument (x,xxxxxxx)"

If I forced the Windows Form application to run on .NET Framework 1.0,
everything works fine.

Here's the partial code for the WebService project

Code:

<WebMethod()> _
Public Function RetrieveDataSet () As DataSet
Dim ds As New DataSet
Dim dt As New DataTable
Dim row As DataRow
Dim i As Integer

dt.TableName = "TestTable"
dt.Columns.Add( "TestColumn 1", GetType(String) )
dt.Columns.Add( "TestColumn 2", GetType(Integer ))

ds.DataSetName = "TestDataSe t"
ds.Tables.Add(d t)

For i = 0 To 10
row = dt.NewRow
row("TestColumn 1") = "This is row " & i
row("TestColumn 2") = i
dt.Rows.Add(row )

' The following code trigger the error after the DataSet
' is returned to the calling Window Form application
row.SetColumnEr ror("TestColumn 1", "Error message here")
Next

Return ds
End Function

For the Windows Form application, you need to insert a datagrid control
(assumed as datagrid1). It will look something like this,

Code:

Private Sub Form1_Load(ByVa l sender As System.Object, ByVal e As
System.EventArg s) Handles MyBase.Load
Dim ws As localhost.Servi ce1
Dim ds As DataSet

Try
ws = New localhost.Servi ce1
ds = ws.RetrieveData Set

Me.DataGrid1.Se tDataBinding(ds .Tables(0), "")
Catch ex As Exception
MsgBox(ex.Messa ge)
Finally
If (Not (ws Is Nothing)) Then
ws.Dispose()
End If
End Try
End Sub
I really hope someone could help me out with this one.

Thanks in advance.

ps: Please, before anyone reply to state that I did not choose the
appropriate groups when making this post a crossposts post, please know that I'm currently in blind on what is causing this error. Is it the WebService? or is it the ADO .Net? or is it Windows Form application? or is it VB ..Net? Well, it has something to do with WebService as it only happens to the
DataSet returned by WebService. It also has something to do with ADO .Net as I'm using DataSet. And it definitely has something to do with Windows Form
application as if I force the Windows Form application project to run on
.Net Framework 1.0, everything works fine.

Jul 19 '05 #4
I guess today I searched on the right keywords - I have looked before but
did not find the following:
http://support.microsoft.com/default.aspx?scid=kb;[LN];818587

Knowledge Base Article 818587
Fix: Regression in Dataset Serialization in Visual Studio .NET 1.1 when a
datarow contains a rowError or a ColumnError Property

Roger


"Programati x" <pr*********@no spam.com> wrote in message
news:Op******** ******@TK2MSFTN GP12.phx.gbl...
Hi,

I'm working on a project which includes XML WebServices and Windows Form
application.

The Windows Form application will call the XML WebServices to retrieve data from database. The data will be returned as DataSet.

Now, here's the problem. On .NET Framework 1.1, if any rows in the dataset
returned contain errors (marked by calling the SetColumnError( ) method or
setting the RowError property of the DataRow), I get the following error
message in the Windows Form application,

"There is an error in XML doument (x,xxxxxxx)"

If I forced the Windows Form application to run on .NET Framework 1.0,
everything works fine.

Here's the partial code for the WebService project

Code:

<WebMethod()> _
Public Function RetrieveDataSet () As DataSet
Dim ds As New DataSet
Dim dt As New DataTable
Dim row As DataRow
Dim i As Integer

dt.TableName = "TestTable"
dt.Columns.Add( "TestColumn 1", GetType(String) )
dt.Columns.Add( "TestColumn 2", GetType(Integer ))

ds.DataSetName = "TestDataSe t"
ds.Tables.Add(d t)

For i = 0 To 10
row = dt.NewRow
row("TestColumn 1") = "This is row " & i
row("TestColumn 2") = i
dt.Rows.Add(row )

' The following code trigger the error after the DataSet
' is returned to the calling Window Form application
row.SetColumnEr ror("TestColumn 1", "Error message here")
Next

Return ds
End Function

For the Windows Form application, you need to insert a datagrid control
(assumed as datagrid1). It will look something like this,

Code:

Private Sub Form1_Load(ByVa l sender As System.Object, ByVal e As
System.EventArg s) Handles MyBase.Load
Dim ws As localhost.Servi ce1
Dim ds As DataSet

Try
ws = New localhost.Servi ce1
ds = ws.RetrieveData Set

Me.DataGrid1.Se tDataBinding(ds .Tables(0), "")
Catch ex As Exception
MsgBox(ex.Messa ge)
Finally
If (Not (ws Is Nothing)) Then
ws.Dispose()
End If
End Try
End Sub
I really hope someone could help me out with this one.

Thanks in advance.

ps: Please, before anyone reply to state that I did not choose the
appropriate groups when making this post a crossposts post, please know that I'm currently in blind on what is causing this error. Is it the WebService? or is it the ADO .Net? or is it Windows Form application? or is it VB ..Net? Well, it has something to do with WebService as it only happens to the
DataSet returned by WebService. It also has something to do with ADO .Net as I'm using DataSet. And it definitely has something to do with Windows Form
application as if I force the Windows Form application project to run on
.Net Framework 1.0, everything works fine.

Jul 19 '05 #5
But... there is no way to download it. Sigh...

"RogerS" <no****@hotmail .com> wrote in message
news:uf******** ******@TK2MSFTN GP10.phx.gbl...
I guess today I searched on the right keywords - I have looked before but
did not find the following:
http://support.microsoft.com/default.aspx?scid=kb;[LN];818587

Knowledge Base Article 818587
Fix: Regression in Dataset Serialization in Visual Studio .NET 1.1 when a
datarow contains a rowError or a ColumnError Property

Roger


"Programati x" <pr*********@no spam.com> wrote in message
news:Op******** ******@TK2MSFTN GP12.phx.gbl...
Hi,

I'm working on a project which includes XML WebServices and Windows Form
application.

The Windows Form application will call the XML WebServices to retrieve data
from database. The data will be returned as DataSet.

Now, here's the problem. On .NET Framework 1.1, if any rows in the dataset returned contain errors (marked by calling the SetColumnError( ) method or setting the RowError property of the DataRow), I get the following error
message in the Windows Form application,

"There is an error in XML doument (x,xxxxxxx)"

If I forced the Windows Form application to run on .NET Framework 1.0,
everything works fine.

Here's the partial code for the WebService project

Code:

<WebMethod()> _
Public Function RetrieveDataSet () As DataSet
Dim ds As New DataSet
Dim dt As New DataTable
Dim row As DataRow
Dim i As Integer

dt.TableName = "TestTable"
dt.Columns.Add( "TestColumn 1", GetType(String) )
dt.Columns.Add( "TestColumn 2", GetType(Integer ))

ds.DataSetName = "TestDataSe t"
ds.Tables.Add(d t)

For i = 0 To 10
row = dt.NewRow
row("TestColumn 1") = "This is row " & i
row("TestColumn 2") = i
dt.Rows.Add(row )

' The following code trigger the error after the DataSet
' is returned to the calling Window Form application
row.SetColumnEr ror("TestColumn 1", "Error message here")
Next

Return ds
End Function

For the Windows Form application, you need to insert a datagrid control
(assumed as datagrid1). It will look something like this,

Code:

Private Sub Form1_Load(ByVa l sender As System.Object, ByVal e As
System.EventArg s) Handles MyBase.Load
Dim ws As localhost.Servi ce1
Dim ds As DataSet

Try
ws = New localhost.Servi ce1
ds = ws.RetrieveData Set

Me.DataGrid1.Se tDataBinding(ds .Tables(0), "")
Catch ex As Exception
MsgBox(ex.Messa ge)
Finally
If (Not (ws Is Nothing)) Then
ws.Dispose()
End If
End Try
End Sub
I really hope someone could help me out with this one.

Thanks in advance.

ps: Please, before anyone reply to state that I did not choose the
appropriate groups when making this post a crossposts post, please know

that
I'm currently in blind on what is causing this error. Is it the

WebService?
or is it the ADO .Net? or is it Windows Form application? or is it VB

.Net?
Well, it has something to do with WebService as it only happens to the
DataSet returned by WebService. It also has something to do with ADO ..Net as
I'm using DataSet. And it definitely has something to do with Windows

Form application as if I force the Windows Form application project to run on
.Net Framework 1.0, everything works fine.


Jul 19 '05 #6
Does this mean I have to pay US99 to get the fix?

"Programati x" <pr*********@no spam.com> wrote in message
news:%2******** ********@TK2MSF TNGP11.phx.gbl. ..
But... there is no way to download it. Sigh...

"RogerS" <no****@hotmail .com> wrote in message
news:uf******** ******@TK2MSFTN GP10.phx.gbl...
I guess today I searched on the right keywords - I have looked before but
did not find the following:
http://support.microsoft.com/default.aspx?scid=kb;[LN];818587

Knowledge Base Article 818587
Fix: Regression in Dataset Serialization in Visual Studio .NET 1.1 when a datarow contains a rowError or a ColumnError Property

Roger


"Programati x" <pr*********@no spam.com> wrote in message
news:Op******** ******@TK2MSFTN GP12.phx.gbl...
Hi,

I'm working on a project which includes XML WebServices and Windows Form application.

The Windows Form application will call the XML WebServices to retrieve

data
from database. The data will be returned as DataSet.

Now, here's the problem. On .NET Framework 1.1, if any rows in the dataset returned contain errors (marked by calling the SetColumnError( ) method or setting the RowError property of the DataRow), I get the following error message in the Windows Form application,

"There is an error in XML doument (x,xxxxxxx)"

If I forced the Windows Form application to run on .NET Framework 1.0,
everything works fine.

Here's the partial code for the WebService project

Code:

<WebMethod()> _
Public Function RetrieveDataSet () As DataSet
Dim ds As New DataSet
Dim dt As New DataTable
Dim row As DataRow
Dim i As Integer

dt.TableName = "TestTable"
dt.Columns.Add( "TestColumn 1", GetType(String) )
dt.Columns.Add( "TestColumn 2", GetType(Integer ))

ds.DataSetName = "TestDataSe t"
ds.Tables.Add(d t)

For i = 0 To 10
row = dt.NewRow
row("TestColumn 1") = "This is row " & i
row("TestColumn 2") = i
dt.Rows.Add(row )

' The following code trigger the error after the DataSet
' is returned to the calling Window Form application
row.SetColumnEr ror("TestColumn 1", "Error message here")
Next

Return ds
End Function

For the Windows Form application, you need to insert a datagrid control (assumed as datagrid1). It will look something like this,

Code:

Private Sub Form1_Load(ByVa l sender As System.Object, ByVal e As
System.EventArg s) Handles MyBase.Load
Dim ws As localhost.Servi ce1
Dim ds As DataSet

Try
ws = New localhost.Servi ce1
ds = ws.RetrieveData Set

Me.DataGrid1.Se tDataBinding(ds .Tables(0), "")
Catch ex As Exception
MsgBox(ex.Messa ge)
Finally
If (Not (ws Is Nothing)) Then
ws.Dispose()
End If
End Try
End Sub
I really hope someone could help me out with this one.

Thanks in advance.

ps: Please, before anyone reply to state that I did not choose the
appropriate groups when making this post a crossposts post, please know that
I'm currently in blind on what is causing this error. Is it the

WebService?
or is it the ADO .Net? or is it Windows Form application? or is it VB

.Net?
Well, it has something to do with WebService as it only happens to the
DataSet returned by WebService. It also has something to do with ADO .Net
as
I'm using DataSet. And it definitely has something to do with Windows

Form application as if I force the Windows Form application project to run

on .Net Framework 1.0, everything works fine.



Jul 19 '05 #7
> Does this mean I have to pay US99 to get the fix?

(sorry about that last post, I hit the wrong key)

Anyway, hopefully not. From the same page:

"NOTE: In special cases, charges that are ordinarily incurred for
support calls may be canceled if a Microsoft Support Professional
determines that a specific update will resolve your problem. The usual
support costs will apply to additional support questions and issues that
do not qualify for the specific update in question."

It remains to be seen what they consider a "special case".
Unfortunately, it sounds like they still charge you up-front, and then
maybe refund it later...

Jul 19 '05 #8
I live in Malaysia, US99 is about RM396 which is 1/3 of my monthly salary.
Anyway, why should Microsoft do that? It is a fix to their own mistakes
(bugs). Sigh...

"Joe White" <ip***@hotmail. com> wrote in message
news:3F******** ******@hotmail. com...
Does this mean I have to pay US99 to get the fix?


(sorry about that last post, I hit the wrong key)

Anyway, hopefully not. From the same page:

"NOTE: In special cases, charges that are ordinarily incurred for
support calls may be canceled if a Microsoft Support Professional
determines that a specific update will resolve your problem. The usual
support costs will apply to additional support questions and issues that
do not qualify for the specific update in question."

It remains to be seen what they consider a "special case".
Unfortunately, it sounds like they still charge you up-front, and then
maybe refund it later...

Jul 19 '05 #9

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

Similar topics

2
2010
by: Programatix | last post by:
Hi, I'm working on a project which includes WebServices and Windows Form application. The Windows Form application will call the WebServices to retrieve data from database. The data will be returned as DataSet. Now, here's the problem. On .NET Framework 1.1, if any rows in the dataset returned contain errors (marked by calling the...
1
5527
by: Kueishiong Tu | last post by:
I have a .net window form application but I have to get data from various web sites. How do I make Http request (preferrably via post method) from a window form to get the data from those web sites? What namespace and dll do I have to include? A walkthrough and coding example will be helpful. ...
6
1226
by: Programatix | last post by:
Hi, I'm working on a project which includes XML WebServices and Windows Form application. The Windows Form application will call the XML WebServices to retrieve data from database. The data will be returned as DataSet. Now, here's the problem. On .NET Framework 1.1, if any rows in the dataset returned contain errors (marked by calling...
2
2145
by: Kueishiong Tu | last post by:
I have a window form application. My program generates a report. I want to invoke the window notepad program to show the report. How do I do that?
2
1123
by: MicroMoth | last post by:
Hi, Is it possible to access classes created in th app_code folder of a website, within a windows form application. The website I am trying to work with has the functionality to create a report for the logged in user. I want to be able to use this existing functionality with the windows form app so that I can create reports for all users...
1
3879
by: yu83thang | last post by:
Hi, May I know how to declare a Class in C++ window application form? Below is my code and error as shown below as well. here is my class declaration: ref class CLoadObj { public:
1
1423
by: bushra lokeman | last post by:
i want to display hello in textbox when i click on a button in window form application.
0
8159
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. ...
0
8314
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 tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that...
0
8185
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
6571
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
5689
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
5366
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...
0
3836
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
2317
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
0
1147
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.