473,725 Members | 2,276 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

DateTime DeSerialization problem

Hi

I am trying to deserialize/ Parse a datetime object with the below
string "2007-05-14T08:00:00.000 +02:30" . If i am in GMT + 2.30 time
zone everything's fine however if i am in GMT + 5.30 i get the
DateTime object which represents 11.00 AM.
Now this is perfectly fine as if i go from GMT +2.30 tp GMT + 5.30 ,
8.00 AM becomes 11.00 AM. however this is not what i want to achieve
in my program.
What i want to achieve is to reconstruct a date time object which
gives me the 8.00 AM as clock time.

Any help would be appreciated a lot.

Thanks, Abhishek

Jun 18 '07 #1
9 9366
So you want 8 AM no matter what time zone you are in? If that is the
case, then just create a format string when calling ToString which does not
have the timezone information in it (or an offset from GMT), and it should
work.
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard. caspershouse.co m

"Abhishek" <lu***********@ gmail.comwrote in message
news:11******** **************@ q69g2000hsb.goo glegroups.com.. .
Hi

I am trying to deserialize/ Parse a datetime object with the below
string "2007-05-14T08:00:00.000 +02:30" . If i am in GMT + 2.30 time
zone everything's fine however if i am in GMT + 5.30 i get the
DateTime object which represents 11.00 AM.
Now this is perfectly fine as if i go from GMT +2.30 tp GMT + 5.30 ,
8.00 AM becomes 11.00 AM. however this is not what i want to achieve
in my program.
What i want to achieve is to reconstruct a date time object which
gives me the 8.00 AM as clock time.

Any help would be appreciated a lot.

Thanks, Abhishek

Jun 18 '07 #2
On Jun 18, 8:08 pm, "Nicholas Paldino [.NET/C# MVP]"
<m...@spam.guar d.caspershouse. comwrote:
So you want 8 AM no matter what time zone you are in? If that is the
case, then just create a format string when calling ToString which does not
have the timezone information in it (or an offset from GMT), and it should
work.

--
- Nicholas Paldino [.NET/C# MVP]
- m...@spam.guard .caspershouse.c om

"Abhishek" <luckyabhis...@ gmail.comwrote in message

news:11******** **************@ q69g2000hsb.goo glegroups.com.. .
Hi
I am trying to deserialize/ Parse a datetime object with the below
string "2007-05-14T08:00:00.000 +02:30" . If i am in GMT + 2.30 time
zone everything's fine however if i am in GMT + 5.30 i get the
DateTime object which represents 11.00 AM.
Now this is perfectly fine as if i go from GMT +2.30 tp GMT + 5.30 ,
8.00 AM becomes 11.00 AM. however this is not what i want to achieve
in my program.
What i want to achieve is to reconstruct a date time object which
gives me the 8.00 AM as clock time.
Any help would be appreciated a lot.
Thanks, Abhishek- Hide quoted text -

- Show quoted text -
Hi Nicholas

It would work as long as i am in GMT + 2.30
As soon as i switch my system time zone to GMT + 5.30 it would start
giving me 11.00 AM which is a problem for me
~Abhishek

Jun 18 '07 #3
Right, that's because you have the "GMT" part in your string. Create a
format which doesn't have the "GMT" part in it and it should have no choice
but to assume local time.
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard. caspershouse.co m

"Abhishek" <lu***********@ gmail.comwrote in message
news:11******** **************@ n60g2000hse.goo glegroups.com.. .
On Jun 18, 8:08 pm, "Nicholas Paldino [.NET/C# MVP]"
<m...@spam.guar d.caspershouse. comwrote:
> So you want 8 AM no matter what time zone you are in? If that is the
case, then just create a format string when calling ToString which does
not
have the timezone information in it (or an offset from GMT), and it
should
work.

--
- Nicholas Paldino [.NET/C# MVP]
- m...@spam.guard .caspershouse.c om

"Abhishek" <luckyabhis...@ gmail.comwrote in message

news:11******* *************** @q69g2000hsb.go oglegroups.com. ..
Hi
I am trying to deserialize/ Parse a datetime object with the below
string "2007-05-14T08:00:00.000 +02:30" . If i am in GMT + 2.30 time
zone everything's fine however if i am in GMT + 5.30 i get the
DateTime object which represents 11.00 AM.
Now this is perfectly fine as if i go from GMT +2.30 tp GMT + 5.30 ,
8.00 AM becomes 11.00 AM. however this is not what i want to achieve
in my program.
What i want to achieve is to reconstruct a date time object which
gives me the 8.00 AM as clock time.
Any help would be appreciated a lot.
Thanks, Abhishek- Hide quoted text -

- Show quoted text -

Hi Nicholas

It would work as long as i am in GMT + 2.30
As soon as i switch my system time zone to GMT + 5.30 it would start
giving me 11.00 AM which is a problem for me
~Abhishek

Jun 18 '07 #4
On Jun 18, 8:58 pm, "Nicholas Paldino [.NET/C# MVP]"
<m...@spam.guar d.caspershouse. comwrote:
Right, that's because you have the "GMT" part in your string. Create a
format which doesn't have the "GMT" part in it and it should have no choice
but to assume local time.

--
- Nicholas Paldino [.NET/C# MVP]
- m...@spam.guard .caspershouse.c om

"Abhishek" <luckyabhis...@ gmail.comwrote in message

news:11******** **************@ n60g2000hse.goo glegroups.com.. .
On Jun 18, 8:08 pm, "Nicholas Paldino [.NET/C# MVP]"
<m...@spam.guar d.caspershouse. comwrote:
So you want 8 AM no matter what time zone you are in? If that is the
case, then just create a format string when calling ToString which does
not
have the timezone information in it (or an offset from GMT), and it
should
work.
--
- Nicholas Paldino [.NET/C# MVP]
- m...@spam.guard .caspershouse.c om
"Abhishek" <luckyabhis...@ gmail.comwrote in message
>news:11******* *************** @q69g2000hsb.go oglegroups.com. ..
Hi
I am trying to deserialize/ Parse a datetime object with the below
string "2007-05-14T08:00:00.000 +02:30" . If i am in GMT + 2.30 time
zone everything's fine however if i am in GMT + 5.30 i get the
DateTime object which represents 11.00 AM.
Now this is perfectly fine as if i go from GMT +2.30 tp GMT + 5.30 ,
8.00 AM becomes 11.00 AM. however this is not what i want to achieve
in my program.
What i want to achieve is to reconstruct a date time object which
gives me the 8.00 AM as clock time.
Any help would be appreciated a lot.
Thanks, Abhishek- Hide quoted text -
- Show quoted text -
Hi Nicholas
It would work as long as i am in GMT + 2.30
As soon as i switch my system time zone to GMT + 5.30 it would start
giving me 11.00 AM which is a problem for me
~Abhishek- Hide quoted text -

- Show quoted text -
Do you mean i should have a string "2007-05-14T08:00:00.000 Z" instead
of "2007-05-14T08:00:00.000 +02:30" ?

~Abhishek

Jun 18 '07 #5
Abishek,

That would be UNC time. What about a format of
"2007-05-14T08:00:00.000 " or "2007-05-14 08:00:00.000".
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard. caspershouse.co m

"Abhishek" <lu***********@ gmail.comwrote in message
news:11******** *************@q 75g2000hsh.goog legroups.com...
On Jun 18, 8:58 pm, "Nicholas Paldino [.NET/C# MVP]"
<m...@spam.guar d.caspershouse. comwrote:
> Right, that's because you have the "GMT" part in your string. Create
a
format which doesn't have the "GMT" part in it and it should have no
choice
but to assume local time.

--
- Nicholas Paldino [.NET/C# MVP]
- m...@spam.guard .caspershouse.c om

"Abhishek" <luckyabhis...@ gmail.comwrote in message

news:11******* *************** @n60g2000hse.go oglegroups.com. ..
On Jun 18, 8:08 pm, "Nicholas Paldino [.NET/C# MVP]"
<m...@spam.guar d.caspershouse. comwrote:
So you want 8 AM no matter what time zone you are in? If that is
the
case, then just create a format string when calling ToString which
does
not
have the timezone information in it (or an offset from GMT), and it
should
work.
>--
- Nicholas Paldino [.NET/C# MVP]
- m...@spam.guard .caspershouse.c om
>"Abhishek" <luckyabhis...@ gmail.comwrote in message
>>news:11****** *************** *@q69g2000hsb.g ooglegroups.com ...
Hi
I am trying to deserialize/ Parse a datetime object with the below
string "2007-05-14T08:00:00.000 +02:30" . If i am in GMT + 2.30 time
zone everything's fine however if i am in GMT + 5.30 i get the
DateTime object which represents 11.00 AM.
Now this is perfectly fine as if i go from GMT +2.30 tp GMT + 5.30 ,
8.00 AM becomes 11.00 AM. however this is not what i want to achieve
in my program.
What i want to achieve is to reconstruct a date time object which
gives me the 8.00 AM as clock time.
Any help would be appreciated a lot.
Thanks, Abhishek- Hide quoted text -
>- Show quoted text -
Hi Nicholas
It would work as long as i am in GMT + 2.30
As soon as i switch my system time zone to GMT + 5.30 it would start
giving me 11.00 AM which is a problem for me
~Abhishek- Hide quoted text -

- Show quoted text -

Do you mean i should have a string "2007-05-14T08:00:00.000 Z" instead
of "2007-05-14T08:00:00.000 +02:30" ?

~Abhishek

Jun 18 '07 #6
On Jun 18, 9:48 pm, "Nicholas Paldino [.NET/C# MVP]"
<m...@spam.guar d.caspershouse. comwrote:
Abishek,

That would be UNC time. What about a format of
"2007-05-14T08:00:00.000 " or "2007-05-14 08:00:00.000".

--
- Nicholas Paldino [.NET/C# MVP]
- m...@spam.guard .caspershouse.c om

"Abhishek" <luckyabhis...@ gmail.comwrote in message

news:11******** *************@q 75g2000hsh.goog legroups.com...
On Jun 18, 8:58 pm, "Nicholas Paldino [.NET/C# MVP]"
<m...@spam.guar d.caspershouse. comwrote:
Right, that's because you have the "GMT" part in your string. Create
a
format which doesn't have the "GMT" part in it and it should have no
choice
but to assume local time.
--
- Nicholas Paldino [.NET/C# MVP]
- m...@spam.guard .caspershouse.c om
"Abhishek" <luckyabhis...@ gmail.comwrote in message
>news:11******* *************** @n60g2000hse.go oglegroups.com. ..
On Jun 18, 8:08 pm, "Nicholas Paldino [.NET/C# MVP]"
<m...@spam.guar d.caspershouse. comwrote:
So you want 8 AM no matter what time zone you are in? If that is
the
case, then just create a format string when calling ToString which
does
not
have the timezone information in it (or an offset from GMT), and it
should
work.
--
- Nicholas Paldino [.NET/C# MVP]
- m...@spam.guard .caspershouse.c om
"Abhishek" <luckyabhis...@ gmail.comwrote in message
>news:11******* *************** @q69g2000hsb.go oglegroups.com. ..
Hi
I am trying to deserialize/ Parse a datetime object with the below
string "2007-05-14T08:00:00.000 +02:30" . If i am in GMT + 2.30 time
zone everything's fine however if i am in GMT + 5.30 i get the
DateTime object which represents 11.00 AM.
Now this is perfectly fine as if i go from GMT +2.30 tp GMT + 5.30 ,
8.00 AM becomes 11.00 AM. however this is not what i want to achieve
in my program.
What i want to achieve is to reconstruct a date time object which
gives me the 8.00 AM as clock time.
Any help would be appreciated a lot.
Thanks, Abhishek- Hide quoted text -
- Show quoted text -
Hi Nicholas
It would work as long as i am in GMT + 2.30
As soon as i switch my system time zone to GMT + 5.30 it would start
giving me 11.00 AM which is a problem for me
~Abhishek- Hide quoted text -
- Show quoted text -
Do you mean i should have a string "2007-05-14T08:00:00.000 Z" instead
of "2007-05-14T08:00:00.000 +02:30" ?
~Abhishek- Hide quoted text -

- Show quoted text -
This is kind of tricky. I've this string coming in as part of SOAP
Response in IBF call and i can't change the server part of the
application.
Basically the SOAP Serializer on the server side serializes a Java
Calendar object to achieve this result and i definitely have very
little control on that serializer.
Any other way ?

~Abhishek

Jun 18 '07 #7
Abhishek,

In this case, you will have to take the offset that you are in (+5.5
hours) and subtract it from the offset the time came from (+2.5 hours) for a
difference of -3 hours. You then apply that to the time in local time on
your machine (11 am) and you will get the local time (8 am).
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard. caspershouse.co m

"Abhishek" <lu***********@ gmail.comwrote in message
news:11******** **************@ w5g2000hsg.goog legroups.com...
On Jun 18, 9:48 pm, "Nicholas Paldino [.NET/C# MVP]"
<m...@spam.guar d.caspershouse. comwrote:
>Abishek,

That would be UNC time. What about a format of
"2007-05-14T08:00:00.000 " or "2007-05-14 08:00:00.000".

--
- Nicholas Paldino [.NET/C# MVP]
- m...@spam.guard .caspershouse.c om

"Abhishek" <luckyabhis...@ gmail.comwrote in message

news:11******* **************@ q75g2000hsh.goo glegroups.com.. .
On Jun 18, 8:58 pm, "Nicholas Paldino [.NET/C# MVP]"
<m...@spam.guar d.caspershouse. comwrote:
Right, that's because you have the "GMT" part in your string.
Create
a
format which doesn't have the "GMT" part in it and it should have no
choice
but to assume local time.
>--
- Nicholas Paldino [.NET/C# MVP]
- m...@spam.guard .caspershouse.c om
>"Abhishek" <luckyabhis...@ gmail.comwrote in message
>>news:11****** *************** *@n60g2000hse.g ooglegroups.com ...
On Jun 18, 8:08 pm, "Nicholas Paldino [.NET/C# MVP]"
<m...@spam.guar d.caspershouse. comwrote:
So you want 8 AM no matter what time zone you are in? If that
is
the
case, then just create a format string when calling ToString which
does
not
have the timezone information in it (or an offset from GMT), and it
should
work.
>--
- Nicholas Paldino [.NET/C# MVP]
- m...@spam.guard .caspershouse.c om
>"Abhishek" <luckyabhis...@ gmail.comwrote in message
>>news:11****** *************** *@q69g2000hsb.g ooglegroups.com ...
Hi
I am trying to deserialize/ Parse a datetime object with the
below
string "2007-05-14T08:00:00.000 +02:30" . If i am in GMT + 2.30
time
zone everything's fine however if i am in GMT + 5.30 i get the
DateTime object which represents 11.00 AM.
Now this is perfectly fine as if i go from GMT +2.30 tp GMT +
5.30 ,
8.00 AM becomes 11.00 AM. however this is not what i want to
achieve
in my program.
What i want to achieve is to reconstruct a date time object which
gives me the 8.00 AM as clock time.
Any help would be appreciated a lot.
Thanks, Abhishek- Hide quoted text -
>- Show quoted text -
Hi Nicholas
It would work as long as i am in GMT + 2.30
As soon as i switch my system time zone to GMT + 5.30 it would start
giving me 11.00 AM which is a problem for me
~Abhishek- Hide quoted text -
>- Show quoted text -
Do you mean i should have a string "2007-05-14T08:00:00.000 Z" instead
of "2007-05-14T08:00:00.000 +02:30" ?
~Abhishek- Hide quoted text -

- Show quoted text -

This is kind of tricky. I've this string coming in as part of SOAP
Response in IBF call and i can't change the server part of the
application.
Basically the SOAP Serializer on the server side serializes a Java
Calendar object to achieve this result and i definitely have very
little control on that serializer.
Any other way ?

~Abhishek

Jun 18 '07 #8
On Mon, 18 Jun 2007 06:01:02 -0700, Abhishek <lu***********@ gmail.com>
wrote:
I am trying to deserialize/ Parse a datetime object with the below
string "2007-05-14T08:00:00.000 +02:30" . If i am in GMT + 2.30 time
zone everything's fine however if i am in GMT + 5.30 i get the
DateTime object which represents 11.00 AM.
Now this is perfectly fine as if i go from GMT +2.30 tp GMT + 5.30 ,
8.00 AM becomes 11.00 AM. however this is not what i want to achieve
in my program.
What i want to achieve is to reconstruct a date time object which
gives me the 8.00 AM as clock time.
Maybe you can clarify the behavior you want. If you are not in timezone
+02:30, and you want the time displayed in your local time, it's not clear
to me why you want the final display to be shown as 08:00:00 in your local
time zone. That's not the same time that you were given in the string.

IMHO, one of the cleanest ways to deal with this is to parse the time as
universal time, and then convert to local or to other timezones as needed
(which may not be necessary at all, depending on what you're doing with
it).

Use the DateTimeStyles. AdjustToUnivers al as a parameter to
DateTime.Parse( ) to have the timezone offset included in the parsing and
applied so that the resulting DateTime object is a Utc type. At that
point, you have the correct time represented as Universal time. Then you
can convert it as appropriate to a different timezone (for example, the
local time, or the original timezone of offset +02:30).

Pete
Jun 18 '07 #9
On Jun 18, 11:04 pm, "Peter Duniho" <NpOeStPe...@nn owslpianmk.com>
wrote:
On Mon, 18 Jun 2007 06:01:02 -0700, Abhishek <luckyabhis...@ gmail.com>
wrote:
I am trying to deserialize/ Parse a datetime object with the below
string "2007-05-14T08:00:00.000 +02:30" . If i am in GMT + 2.30 time
zone everything's fine however if i am in GMT + 5.30 i get the
DateTime object which represents 11.00 AM.
Now this is perfectly fine as if i go from GMT +2.30 tp GMT + 5.30 ,
8.00 AM becomes 11.00 AM. however this is not what i want to achieve
in my program.
What i want to achieve is to reconstruct a date time object which
gives me the 8.00 AM as clock time.

Maybe you can clarify the behavior you want. If you are not in timezone
+02:30, and you want the time displayed in your local time, it's not clear
to me why you want the final display to be shown as 08:00:00 in your local
time zone. That's not the same time that you were given in the string.

IMHO, one of the cleanest ways to deal with this is to parse the time as
universal time, and then convert to local or to other timezones as needed
(which may not be necessary at all, depending on what you're doing with
it).

Use the DateTimeStyles. AdjustToUnivers al as a parameter to
DateTime.Parse( ) to have the timezone offset included in the parsing and
applied so that the resulting DateTime object is a Utc type. At that
point, you have the correct time represented as Universal time. Then you
can convert it as appropriate to a different timezone (for example, the
local time, or the original timezone of offset +02:30).

Pete
Hi Pete

I understand what you are saying however i can;t really do what you
are suggesting. The reason being that i am working on an application
which is timezone aware on the frontend e.g. Outlook however my
backend is time zone unaware.
Now to overcome this limitation what we've decided is to actually
transfer the date time over the wire in the above format where the
bacend only stores the clock time. Now since .NET serializer always
serializes the DateTime in the above format my problem is solved.
however when i need to display the time to the user and if he has
changed his time zone i still need to display the clock time which has
been recorded in the backend.
I can't really work in all UTC because we've plans to modify our
backend to be timezone aware and consider the timezones as well. So to
maintain the forward compatibility i need to make sure that actual
stuff goes over the wire.
~Abhishek

Jun 19 '07 #10

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

Similar topics

0
5159
by: Symon R | last post by:
This is a bit of a weird one that I haven't yet been able to solve - I'm hoping someone out there can disprove my findings and tell me where I've gone wrong! I have designed a web service that accepts messages from .NET clients. The web method call includes an object as one of it's parameters - this reflected object has been given a property called "FutureDelivery" and expects a DateTime value. The clients may be in different timezones...
2
3825
by: Snowman | last post by:
Suppose I have a RootObject which holds a collection of other objects. The other objects have a property (Parent) which refers back to the "parent" collection (b.t.w. my collection is based on CollectionBase), in similar fashion as the object models of MS Office. I want to serialize this object graph (with RootObject as the xml document element) without Parent property serialized, this may be done by adding XmlIgnoreAttribute on the...
3
9795
by: parrot toes | last post by:
Summary: I have been trying to make requests of a web service provided by Axis using a dotnet client with code generated by wsdl.exe and have been getting exceptions when trying to process the response. As a result of seraching news groups I guessed that the SOAP response defines an array element in a way that causes the dotnet deserialization routines to put the content in a generic object array (object) BUT the content is supposed to...
1
3746
by: parrot toes | last post by:
I tried to post this question before, but there was an error when posting. I case it did get posted and in order to avoid duplication, I'll just repost a summary. I have written a dotnet client that accesses a Axis provided web service. The client uses the code generated, using wsdl.exe, from the wsdl file provided by the web service provider. The web response has the following schema (roughly):
9
4927
by: Phil B | last post by:
I am having a problem with a datetime from a web services provider The provider is sending the following SOAP response <?xml version="1.0" encoding="utf-8"?> <soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:tns="urn:JadeWebServices/WebServiceProvider/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
4
21409
by: luckyabhishek | last post by:
Hi I am using a java webservice in a .NET application. The xml type of a field in this webservice is xsd:datetime. When i call the webservice from the application i get a deserialization error on the java webservice side. It says "Can not create instance of from string with schema type http://www.w3.org/2001/XMLSchema]". Can anyone let me know what could be the problem. I am just sending a DateTime object which i get from a VB...
3
2642
by: Zachary Turner | last post by:
Hello, I have a situation where I would like to perform custom serialization and deserialization of an existing .NET framework object (specifically, System.DateTime). Is there a common paradigm here, for how I can override the default behavior of DateTime serialization and provide my own? I want to use this custom serialized DateTime in many places, and don't want to provide custom serialization routines for every single object that...
1
3077
by: =?Utf-8?B?YXZucmFv?= | last post by:
We have a web service that gets data in xml format. In that Xml data, we parse few date fields that are in this format <data datefield="12/26/2008" timefield="16:33:45" ...> we parse it into a DateTime field using DateTime.Parse( datefield ).Add( TimeSpan.Parse( timefield ). For some reason, on 26th of this month from 4pm to 5pm, for certain web service calls, the date field was calculated incorrectly. Like a 12/26/2008 16:00:00 would...
7
1813
by: Looch | last post by:
All, I'm using a WinForm app that calls methods on a remotable object. The app server hosting the object is in New York. Using the same exact application, a Sql Server 2005 datetime column's info is being displayed as '3/25/2008' in California and '3/26/2008' in New York (outside the LAN) where the data in the column is '3/26/2008 12:00:00 AM' (I'm converting the to the short date format in the app code). I can get the California app to...
0
8889
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9401
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. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
9257
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 captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
9179
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 most users, this new feature is actually very convenient. If you want to control the update process,...
0
9116
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 choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
8099
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 launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
6702
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 instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
1
3228
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
2
2637
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

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.