473,508 Members | 3,833 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

System.OutOfMemoryException during serialization

Hi to all,

I am getting this System.OutOfMemoryException calling the
Runtime.Serialization.Formatters.Binary.BinaryForm atter.Serialize(<stream>,<Obj>) method.
The type of <streamis IO.MemoryStream

=====Exception:
System.OutOfMemoryException: Exception of type 'System.OutOfMemoryException'
was
thrown.
at System.IO.MemoryStream.set_Capacity(Int32 value)
at System.IO.MemoryStream.EnsureCapacity(Int32 value)
at System.IO.MemoryStream.Write(Byte[] buffer, Int32 offset, Int32 count)
at System.IO.BinaryWriter.Write(Double value)
at
System.Runtime.Serialization.Formatters.Binary.__B inaryWriter.WriteValue(I
nternalPrimitiveTypeE code, Object value)
at
System.Runtime.Serialization.Formatters.Binary.__B inaryWriter.WriteMember(
NameInfo memberNameInfo, NameInfo typeNameInfo, Object value)
at
System.Runtime.Serialization.Formatters.Binary.Obj ectWriter.WriteKnownValu
eClass(NameInfo memberNameInfo, NameInfo typeNameInfo, Object data)
at
System.Runtime.Serialization.Formatters.Binary.Obj ectWriter.WriteMembers(N
ameInfo memberNameInfo, NameInfo memberTypeNameInfo, Object memberData,
WriteObj
ectInfo objectInfo, NameInfo typeNameInfo, WriteObjectInfo memberObjectInfo)
at
System.Runtime.Serialization.Formatters.Binary.Obj ectWriter.WriteMemberSet
up(WriteObjectInfo objectInfo, NameInfo memberNameInfo, NameInfo
typeNameInfo, S
tring memberName, Type memberType, Object memberData, WriteObjectInfo
memberObje
ctInfo)
at
System.Runtime.Serialization.Formatters.Binary.Obj ectWriter.Write(WriteObj
ectInfo objectInfo, NameInfo memberNameInfo, NameInfo typeNameInfo, String[]
mem
berNames, Type[] memberTypes, Object[] memberData, WriteObjectInfo[]
memberObjec
tInfos)
at
System.Runtime.Serialization.Formatters.Binary.Obj ectWriter.Write(WriteObj
ectInfo objectInfo, NameInfo memberNameInfo, NameInfo typeNameInfo)
at
System.Runtime.Serialization.Formatters.Binary.Obj ectWriter.Serialize(Obje
ct graph, Header[] inHeaders, __BinaryWriter serWriter, Boolean fCheck)
at
System.Runtime.Serialization.Formatters.Binary.Bin aryFormatter.Serialize(S
tream serializationStream, Object graph, Header[] headers, Boolean fCheck)
at
System.Runtime.Serialization.Formatters.Binary.Bin aryFormatter.Serialize(S
tream serializationStream, Object graph)
at SerializationBenchmark.Module1.Main() in C:\Develop\Projects\Visual
Studio
2005\SerializationBenchmark\SerializationBenchmark \Module1.vb:line 41

=============
After building a benchmark application to reproduce the error (building
progressively larger objects to serialize until getting the error).
To understand the problem, I collected the following informations:
Serialization stream lenght (before exception is thrown) 16,777,214 Bytes
Allocated memory 1,028,914,416 Bytes
[to get the memory I called GC.GetTotalMemory(False)]

Please note my system is a x64 workstation with 6 GB RAM (and Windows Server
2003 R2 SP2 Enterprise). When the exception was thrown the total load of the
system was about 4162 MB.

The application configuration targets specifically x86 platform.

Can anybody explain me this behaviour and how to workaround it? I cannot
understand the why of the exception, since the lenght of the stream is lower
than the Int32.MaxValue and I still have free RAM.
Any help will be appreciated.
Thank you

Jun 23 '07 #1
8 12541

there is currently a 2GB limit for all CLR objects, no matter what OS
you are running on 32 / 64 bit.

There is also a practical limit, dependent on the current system
conditions, (memory fragmentation ) that limits the growth to the largest
continguous block of memory available.

a trick is to set the maximum capacity on forehand , cause if the CLR needs
to resize the object it needs twice the memory it currently holds

i hope this helps a bit

"Piggy" wrote:
Hi to all,

I am getting this System.OutOfMemoryException calling the
Runtime.Serialization.Formatters.Binary.BinaryForm atter.Serialize(<stream>,<Obj>) method.
The type of <streamis IO.MemoryStream

=====Exception:
System.OutOfMemoryException: Exception of type 'System.OutOfMemoryException'
was
thrown.
at System.IO.MemoryStream.set_Capacity(Int32 value)
at System.IO.MemoryStream.EnsureCapacity(Int32 value)
at System.IO.MemoryStream.Write(Byte[] buffer, Int32 offset, Int32 count)
at System.IO.BinaryWriter.Write(Double value)
at
System.Runtime.Serialization.Formatters.Binary.__B inaryWriter.WriteValue(I
nternalPrimitiveTypeE code, Object value)
at
System.Runtime.Serialization.Formatters.Binary.__B inaryWriter.WriteMember(
NameInfo memberNameInfo, NameInfo typeNameInfo, Object value)
at
System.Runtime.Serialization.Formatters.Binary.Obj ectWriter.WriteKnownValu
eClass(NameInfo memberNameInfo, NameInfo typeNameInfo, Object data)
at
System.Runtime.Serialization.Formatters.Binary.Obj ectWriter.WriteMembers(N
ameInfo memberNameInfo, NameInfo memberTypeNameInfo, Object memberData,
WriteObj
ectInfo objectInfo, NameInfo typeNameInfo, WriteObjectInfo memberObjectInfo)
at
System.Runtime.Serialization.Formatters.Binary.Obj ectWriter.WriteMemberSet
up(WriteObjectInfo objectInfo, NameInfo memberNameInfo, NameInfo
typeNameInfo, S
tring memberName, Type memberType, Object memberData, WriteObjectInfo
memberObje
ctInfo)
at
System.Runtime.Serialization.Formatters.Binary.Obj ectWriter.Write(WriteObj
ectInfo objectInfo, NameInfo memberNameInfo, NameInfo typeNameInfo, String[]
mem
berNames, Type[] memberTypes, Object[] memberData, WriteObjectInfo[]
memberObjec
tInfos)
at
System.Runtime.Serialization.Formatters.Binary.Obj ectWriter.Write(WriteObj
ectInfo objectInfo, NameInfo memberNameInfo, NameInfo typeNameInfo)
at
System.Runtime.Serialization.Formatters.Binary.Obj ectWriter.Serialize(Obje
ct graph, Header[] inHeaders, __BinaryWriter serWriter, Boolean fCheck)
at
System.Runtime.Serialization.Formatters.Binary.Bin aryFormatter.Serialize(S
tream serializationStream, Object graph, Header[] headers, Boolean fCheck)
at
System.Runtime.Serialization.Formatters.Binary.Bin aryFormatter.Serialize(S
tream serializationStream, Object graph)
at SerializationBenchmark.Module1.Main() in C:\Develop\Projects\Visual
Studio
2005\SerializationBenchmark\SerializationBenchmark \Module1.vb:line 41

=============
After building a benchmark application to reproduce the error (building
progressively larger objects to serialize until getting the error).
To understand the problem, I collected the following informations:
Serialization stream lenght (before exception is thrown) 16,777,214 Bytes
Allocated memory 1,028,914,416 Bytes
[to get the memory I called GC.GetTotalMemory(False)]

Please note my system is a x64 workstation with 6 GB RAM (and Windows Server
2003 R2 SP2 Enterprise). When the exception was thrown the total load of the
system was about 4162 MB.

The application configuration targets specifically x86 platform.

Can anybody explain me this behaviour and how to workaround it? I cannot
understand the why of the exception, since the lenght of the stream is lower
than the Int32.MaxValue and I still have free RAM.
Any help will be appreciated.
Thank you
Jun 25 '07 #2

Had some more time to backup my statements :-)

http://msdn2.microsoft.com/en-us/lib...64(VS.80).aspx
http://blogs.msdn.com/joshwil/archiv...10/450202.aspx
Please not the following even on a 64 bit system the object limit is 2 GB so
however if the system has enough ram you can alocate multiple objects of 2
gb

on a 32 bit system you cannot allocate full 2 gb so there sure is an
advantage to have a 64 bit system and to compile in 64 bit modus
HTH

Michel


"M. Posseth" wrote:
>
there is currently a 2GB limit for all CLR objects, no matter what OS
you are running on 32 / 64 bit.

There is also a practical limit, dependent on the current system
conditions, (memory fragmentation ) that limits the growth to the largest
continguous block of memory available.

a trick is to set the maximum capacity on forehand , cause if the CLR needs
to resize the object it needs twice the memory it currently holds

i hope this helps a bit

"Piggy" wrote:
Hi to all,

I am getting this System.OutOfMemoryException calling the
Runtime.Serialization.Formatters.Binary.BinaryForm atter.Serialize(<stream>,<Obj>) method.
The type of <streamis IO.MemoryStream

=====Exception:
System.OutOfMemoryException: Exception of type 'System.OutOfMemoryException'
was
thrown.
at System.IO.MemoryStream.set_Capacity(Int32 value)
at System.IO.MemoryStream.EnsureCapacity(Int32 value)
at System.IO.MemoryStream.Write(Byte[] buffer, Int32 offset, Int32 count)
at System.IO.BinaryWriter.Write(Double value)
at
System.Runtime.Serialization.Formatters.Binary.__B inaryWriter.WriteValue(I
nternalPrimitiveTypeE code, Object value)
at
System.Runtime.Serialization.Formatters.Binary.__B inaryWriter.WriteMember(
NameInfo memberNameInfo, NameInfo typeNameInfo, Object value)
at
System.Runtime.Serialization.Formatters.Binary.Obj ectWriter.WriteKnownValu
eClass(NameInfo memberNameInfo, NameInfo typeNameInfo, Object data)
at
System.Runtime.Serialization.Formatters.Binary.Obj ectWriter.WriteMembers(N
ameInfo memberNameInfo, NameInfo memberTypeNameInfo, Object memberData,
WriteObj
ectInfo objectInfo, NameInfo typeNameInfo, WriteObjectInfo memberObjectInfo)
at
System.Runtime.Serialization.Formatters.Binary.Obj ectWriter.WriteMemberSet
up(WriteObjectInfo objectInfo, NameInfo memberNameInfo, NameInfo
typeNameInfo, S
tring memberName, Type memberType, Object memberData, WriteObjectInfo
memberObje
ctInfo)
at
System.Runtime.Serialization.Formatters.Binary.Obj ectWriter.Write(WriteObj
ectInfo objectInfo, NameInfo memberNameInfo, NameInfo typeNameInfo, String[]
mem
berNames, Type[] memberTypes, Object[] memberData, WriteObjectInfo[]
memberObjec
tInfos)
at
System.Runtime.Serialization.Formatters.Binary.Obj ectWriter.Write(WriteObj
ectInfo objectInfo, NameInfo memberNameInfo, NameInfo typeNameInfo)
at
System.Runtime.Serialization.Formatters.Binary.Obj ectWriter.Serialize(Obje
ct graph, Header[] inHeaders, __BinaryWriter serWriter, Boolean fCheck)
at
System.Runtime.Serialization.Formatters.Binary.Bin aryFormatter.Serialize(S
tream serializationStream, Object graph, Header[] headers, Boolean fCheck)
at
System.Runtime.Serialization.Formatters.Binary.Bin aryFormatter.Serialize(S
tream serializationStream, Object graph)
at SerializationBenchmark.Module1.Main() in C:\Develop\Projects\Visual
Studio
2005\SerializationBenchmark\SerializationBenchmark \Module1.vb:line 41

=============
After building a benchmark application to reproduce the error (building
progressively larger objects to serialize until getting the error).
To understand the problem, I collected the following informations:
Serialization stream lenght (before exception is thrown) 16,777,214 Bytes
Allocated memory 1,028,914,416 Bytes
[to get the memory I called GC.GetTotalMemory(False)]

Please note my system is a x64 workstation with 6 GB RAM (and Windows Server
2003 R2 SP2 Enterprise). When the exception was thrown the total load of the
system was about 4162 MB.

The application configuration targets specifically x86 platform.

Can anybody explain me this behaviour and how to workaround it? I cannot
understand the why of the exception, since the lenght of the stream is lower
than the Int32.MaxValue and I still have free RAM.
Any help will be appreciated.
Thank you
Jun 25 '07 #3
there is currently a 2GB limit for all CLR objects, no matter what OS
you are running on 32 / 64 bit.
Not true. 64 bit .Net has 64 bit pointers enabling you to use more memory.
That is the whole point of a 64 bit memory model.
There is also a practical limit, dependent on the current system
conditions, (memory fragmentation ) that limits the growth to the largest
continguous block of memory available.
True, though fragmentation is greatly reduced in 64 bit land. Current
systems max out
at about 32 gb, which is a very small percent of the total addressable
space.
There will always be additional page table entries to map too.

I have never seen "Out of Memory" in the 64 bit world. However swap files
are very
slow..
a trick is to set the maximum capacity on forehand , cause if the CLR
needs
in some Java VM's you can set the max size. Never heard of this in the .Net
world.
Have any links to back this up?
to resize the object it needs twice the memory it currently holds
it would have to be greater than 2x, otherwise you would get 2 indentical
objects,
instead of an old one needing to be GC'd, and a new larger one.

i hope this helps a bit
Nope, sorry.
Jun 25 '07 #4

Robert = Piggy ???

Well i am not active in these newsgroups to tell ferry tales

I just shared my knowledge regarding this mather , and for your info i have
programmed on the 64 bit platfom ( coded with beta versions of visual
studio 2005 on beta version of Windows 2003 X64 so i guess i was an early
adopter of the 64 bit platform )

And all of my 64 bit progyys work, one of them reads 17 GB MYSQL dump
files
P.s.

I remember when i had a problem and posted in a newsgroup or forum i was
verry pleased when somebody , tried to help me with my problems , nowadays
you are beeing atacked when the answer is not what the person expected or
thinks what is right
Thank you verry much
Michel Posseth



"Robert" <no@spam.comschreef in bericht
news:ui**************@TK2MSFTNGP03.phx.gbl...
>there is currently a 2GB limit for all CLR objects, no matter what OS
you are running on 32 / 64 bit.

Not true. 64 bit .Net has 64 bit pointers enabling you to use more
memory.
That is the whole point of a 64 bit memory model.
>There is also a practical limit, dependent on the current system
conditions, (memory fragmentation ) that limits the growth to the
largest
continguous block of memory available.

True, though fragmentation is greatly reduced in 64 bit land. Current
systems max out
at about 32 gb, which is a very small percent of the total addressable
space.
There will always be additional page table entries to map too.

I have never seen "Out of Memory" in the 64 bit world. However swap files
are very
slow..
>a trick is to set the maximum capacity on forehand , cause if the CLR
needs

in some Java VM's you can set the max size. Never heard of this in the
.Net world.
Have any links to back this up?
>to resize the object it needs twice the memory it currently holds

it would have to be greater than 2x, otherwise you would get 2 indentical
objects,
instead of an old one needing to be GC'd, and a new larger one.

>i hope this helps a bit

Nope, sorry.


Jun 25 '07 #5
Robert wrote:
I have never seen "Out of Memory" in the 64 bit world.
Well, that would be easy to fix:

public int Test { get { return Test; } }

;)
>to resize the object it needs twice the memory it currently holds

it would have to be greater than 2x, otherwise you would get 2 indentical
objects,
instead of an old one needing to be GC'd, and a new larger one.
That depends on your view. :)

The new allocated array is twice the size of the previous one, so
together they are three times the previus size.

--
Göran Andersson
_____
http://www.guffa.com
Jun 25 '07 #6
Robert = Piggy ???
>
Well i am not active in these newsgroups to tell ferry tales

I just shared my knowledge regarding this mather , and for your info i
have programmed on the 64 bit platfom ( coded with beta versions of
visual studio 2005 on beta version of Windows 2003 X64 so i guess i was
an early adopter of the 64 bit platform )

And all of my 64 bit progyys work, one of them reads 17 GB MYSQL dump
files
P.s.

I remember when i had a problem and posted in a newsgroup or forum i was
verry pleased when somebody , tried to help me with my problems ,
nowadays you are beeing atacked when the answer is not what the person
expected or thinks what is right
This is phrased poorly: "there is currently a 2GB limit for all CLR
objects,"
It should read "2GB limit for *each* CLR *value type*".
I interpreted the original "ALL" as just that, all your objects, taken
together,
can not exceed 2GB.

Was not wanting to attack, but when somebody posts an "answer", that in my
experience is factually incorrect, then a follow up post requesting
additional
details is warranted... When posting it pays to be precise.

I still have zero clue what was meant by "set the maximum capacity on
forehand"..
Perhaps you meant something along the lines of "Declare your arrays at the
module
level and set the size to the maximum needed capacity at initialization,
then re-using
instead of de-allocating it" ?!? This would greatly reduce memory
fragmentation
in the 32 bit world.. But the original statement was unclear, giving no
real direction
on how to implement a fix. And googling on the keywords in the original
statement
would not give relevant results. I feel the keywords in my rewrite are more
likely
to be useful..

NOT Piggy. Check the headers..

Sorry it came across as an attack. I was aiming for constructive criticism
of your writing style. Perhaps you not a native english speaker?
ie "Ferry Tales" - regarding boats perhaps? :)
"Robert" <no@spam.comschreef in bericht
news:ui**************@TK2MSFTNGP03.phx.gbl...
>>there is currently a 2GB limit for all CLR objects, no matter what OS
you are running on 32 / 64 bit.

Not true. 64 bit .Net has 64 bit pointers enabling you to use more
memory.
That is the whole point of a 64 bit memory model.
>>There is also a practical limit, dependent on the current system
conditions, (memory fragmentation ) that limits the growth to the
largest
continguous block of memory available.

True, though fragmentation is greatly reduced in 64 bit land. Current
systems max out
at about 32 gb, which is a very small percent of the total addressable
space.
There will always be additional page table entries to map too.

I have never seen "Out of Memory" in the 64 bit world. However swap
files are very
slow..
>>a trick is to set the maximum capacity on forehand , cause if the CLR
needs

in some Java VM's you can set the max size. Never heard of this in the
.Net world.
Have any links to back this up?
>>to resize the object it needs twice the memory it currently holds

it would have to be greater than 2x, otherwise you would get 2 indentical
objects,
instead of an old one needing to be GC'd, and a new larger one.

>>i hope this helps a bit

Nope, sorry.



Jun 26 '07 #7
>I have never seen "Out of Memory" in the 64 bit world.

Well, that would be easy to fix:

public int Test { get { return Test; } }

;)

:)

1) this is a VB group, your example looks rather c#'ish
2) I think, not sure tho, that vb optimizes this out.
3) I think you would get a stack overflow, not OOM
4) I stand by "never seen System.OutOfMemoryException"
a) Windows allocates VM space like mad
b) Everything gets slow
c) Everything gets paged out, even large parts of the OS
d) Everything gets slower (clicking another app here takes MINUTES to
switch)
e) Windows crashes..

I actually learned #4 the hard way about 4 months ago.

Not an attack..
Jun 26 '07 #8
Robert ,

MS describes it like this

"there is a 2GB limit on the size of an object you can create while running
a 64-bit managed application on a 64-bit Windows operating system."

And yes i have a big excuse to use wrong grammar , mis spell words , or even
using strange sentences , as i am indeed not a native English speaker ;-)


regards

Michel


"Robert" wrote:
Robert = Piggy ???

Well i am not active in these newsgroups to tell ferry tales

I just shared my knowledge regarding this mather , and for your info i
have programmed on the 64 bit platfom ( coded with beta versions of
visual studio 2005 on beta version of Windows 2003 X64 so i guess i was
an early adopter of the 64 bit platform )

And all of my 64 bit progyys work, one of them reads 17 GB MYSQL dump
files
P.s.

I remember when i had a problem and posted in a newsgroup or forum i was
verry pleased when somebody , tried to help me with my problems ,
nowadays you are beeing atacked when the answer is not what the person
expected or thinks what is right

This is phrased poorly: "there is currently a 2GB limit for all CLR
objects,"
It should read "2GB limit for *each* CLR *value type*".
I interpreted the original "ALL" as just that, all your objects, taken
together,
can not exceed 2GB.

Was not wanting to attack, but when somebody posts an "answer", that in my
experience is factually incorrect, then a follow up post requesting
additional
details is warranted... When posting it pays to be precise.

I still have zero clue what was meant by "set the maximum capacity on
forehand"..
Perhaps you meant something along the lines of "Declare your arrays at the
module
level and set the size to the maximum needed capacity at initialization,
then re-using
instead of de-allocating it" ?!? This would greatly reduce memory
fragmentation
in the 32 bit world.. But the original statement was unclear, giving no
real direction
on how to implement a fix. And googling on the keywords in the original
statement
would not give relevant results. I feel the keywords in my rewrite are more
likely
to be useful..

NOT Piggy. Check the headers..

Sorry it came across as an attack. I was aiming for constructive criticism
of your writing style. Perhaps you not a native english speaker?
ie "Ferry Tales" - regarding boats perhaps? :)
"Robert" <no@spam.comschreef in bericht
news:ui**************@TK2MSFTNGP03.phx.gbl...
>there is currently a 2GB limit for all CLR objects, no matter what OS
you are running on 32 / 64 bit.

Not true. 64 bit .Net has 64 bit pointers enabling you to use more
memory.
That is the whole point of a 64 bit memory model.

There is also a practical limit, dependent on the current system
conditions, (memory fragmentation ) that limits the growth to the
largest
continguous block of memory available.

True, though fragmentation is greatly reduced in 64 bit land. Current
systems max out
at about 32 gb, which is a very small percent of the total addressable
space.
There will always be additional page table entries to map too.

I have never seen "Out of Memory" in the 64 bit world. However swap
files are very
slow..

a trick is to set the maximum capacity on forehand , cause if the CLR
needs

in some Java VM's you can set the max size. Never heard of this in the
.Net world.
Have any links to back this up?

to resize the object it needs twice the memory it currently holds

it would have to be greater than 2x, otherwise you would get 2 indentical
objects,
instead of an old one needing to be GC'd, and a new larger one.
i hope this helps a bit

Nope, sorry.



Jun 26 '07 #9

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

Similar topics

0
2285
by: solomon | last post by:
Hi, I have installed VS.Net(Ver:7.0.9466) & .Net_Frameword_1.0 (Ver: 1.0.3705). Until recently, I could develop and run applications using the IDE. A couple of days ago, I downloaded a sample...
0
2729
by: Per Bergland | last post by:
After many woes, I finally managed to get a stack dump of my System Service (written in C#) that insists on crashing when launched at system boot time (see below on how to get this dump - I...
1
3426
by: Ripul Handa | last post by:
Hi We are running IIS 5.0 cluster with cisco local director. We are running a website on 2 webservers and I have been observing that from past few days we have are getting this error message of...
1
281
by: Fletch | last post by:
Hi I have an application running on a cluster that's constantly throwing an OutOfMemoryException with the following message "Unable to serialize the session state. Please note that...
1
4954
by: SMG - Idealake | last post by:
Hi all, I am getting following error on my error, what could be the reason? Exception of type System.OutOfMemoryException was thrown. Description: An unhandled exception occurred during the...
5
19560
by: Stacey Levine | last post by:
I have a webservice that I wanted to return an ArrayList..Well the service compiles and runs when I have the output defined as ArrayList, but the WSDL defines the output as an Object so I was...
1
3866
by: Ashkan Daie | last post by:
Hi All, When trying to install a performance counter via InstallUtil I get the following exception: Creating performance counter category Enterprise Library Caching. An exception occurred...
0
2018
by: nicomp | last post by:
I created a Web Service: I imported System.Data.SqlClient so I could access SQL server tables programmatically. The web service builds and deploys with no problems. When I try to add the...
0
4401
by: AY | last post by:
Hello, We use a third party reporting system (Actuate) which provides soap services via WSDL. My web application was initially built in Visual Studio 2003 using .NET 1.1. I was able to...
0
7333
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,...
1
7061
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
5637
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,...
1
5057
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...
0
4716
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...
0
3208
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...
0
3194
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
0
1566
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 ...
1
769
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.