473,503 Members | 4,234 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

StackOverflowexception

Hi all,
I don't know what the exact meaning in my case for this exception to be
thrown.
When my program execute the following statement:

item.NumPersonsOnTrxn = GetNumofPeoplePerTrxn(orderID, sProduct)

The system.stackoverflowexception was thrown.
The getNumberofPeoperPerTrxn is just a function defined as follow
Public Shared Function GetNumofPeoplePerTrxn(ByVal OrderID As String, ByVal
Product As String) As Integer

and the item.NumPersonsOnTrxn is an Integer property define in a class
ProducerTabularReport(Item).
Can you give me a hint? Before the exception, the function
GetNumofPeoplePerTrxn(orderID, sProduct) return 2 in watch window,
item.NumPersonsOnTrxn is 0(byDefault I guess)

--
Betty
Feb 24 '06 #1
6 1918
..When this exception is thrown, I only have one pending method call on call
stack window which is the calling function for GetNumofPeoplePerTrxn.
--
Betty
"c676228" wrote:
Hi all,
I don't know what the exact meaning in my case for this exception to be
thrown.
When my program execute the following statement:

item.NumPersonsOnTrxn = GetNumofPeoplePerTrxn(orderID, sProduct)

The system.stackoverflowexception was thrown.
The getNumberofPeoperPerTrxn is just a function defined as follow
Public Shared Function GetNumofPeoplePerTrxn(ByVal OrderID As String, ByVal
Product As String) As Integer

and the item.NumPersonsOnTrxn is an Integer property define in a class
ProducerTabularReport(Item).
Can you give me a hint? Before the exception, the function
GetNumofPeoplePerTrxn(orderID, sProduct) return 2 in watch window,
item.NumPersonsOnTrxn is 0(byDefault I guess)

--
Betty

Feb 24 '06 #2
Well, the first thing I can tell you is that the problem with the function
is not in the signature of the function, but in the code of the function.
That's what you need to post.

A stack overflow is usually caused by an infinite loop or infinite
recursion.

--
HTH,

Kevin Spencer
Microsoft MVP
..Net Developer
A brute awe as you,
a Metallic hag entity, eat us.
"c676228" <be****@community.nospam> wrote in message
news:0C**********************************@microsof t.com...
Hi all,
I don't know what the exact meaning in my case for this exception to be
thrown.
When my program execute the following statement:

item.NumPersonsOnTrxn = GetNumofPeoplePerTrxn(orderID, sProduct)

The system.stackoverflowexception was thrown.
The getNumberofPeoperPerTrxn is just a function defined as follow
Public Shared Function GetNumofPeoplePerTrxn(ByVal OrderID As String,
ByVal
Product As String) As Integer

and the item.NumPersonsOnTrxn is an Integer property define in a class
ProducerTabularReport(Item).
Can you give me a hint? Before the exception, the function
GetNumofPeoplePerTrxn(orderID, sProduct) return 2 in watch window,
item.NumPersonsOnTrxn is 0(byDefault I guess)

--
Betty

Feb 24 '06 #3
Hi Kevin,
Here is the funciton. I just cannot see there will be an infinite loop here.
Thanks for your help.

Public Shared Function GetNumofPeoplePerTrxn(ByVal OrderID As String, ByVal
Product As String) As Integer
Dim nameArr(3) As String
Dim i, j As Integer
i = 1
Dim sqlConnection As SqlConnection = New
SqlConnection(ConfigurationSettings.AppSettings(Gl obal.CfgKeyConnString))
Dim myCommand As SqlCommand = New
SqlCommand("getNumPersonPerTrxn", sqlConnection)

myCommand.CommandType = CommandType.StoredProcedure
Dim pOrderID As SqlParameter = New SqlParameter("@OrderID",
SqlDbType.VarChar, 18)
pOrderID.Value = OrderID
myCommand.Parameters.Add(pOrderID)

Dim pProduct As SqlParameter = New SqlParameter("@Product",
SqlDbType.VarChar, 30)
pProduct.Value = Product
myCommand.Parameters.Add(pProduct)

sqlConnection.Open()
Dim result As SqlDataReader =
myCommand.ExecuteReader(CommandBehavior.CloseConne ction)
'expect only one record or none
If result.Read() Then
Select Case Product
Case "Travel Insurance Select"
If
CInt(result.GetValue(result.GetOrdinal("SelectPlus "))) = 1 Then
'code will be add here

End If
Case "InterMedical Insurance"
If
Trim(CStr(result.GetValue(result.GetOrdinal("Spous eSurname")))) <> "" Then
i = i + 1
End If
For j = 1 To 3
If
Trim(CStr(result.GetValue(result.GetOrdinal("Child " & j & "Surname")))) <> ""
Then
i = i + 1
End If
Next
End Select
End If
Return i
End Function
--
Betty
"Kevin Spencer" wrote:
Well, the first thing I can tell you is that the problem with the function
is not in the signature of the function, but in the code of the function.
That's what you need to post.

A stack overflow is usually caused by an infinite loop or infinite
recursion.

--
HTH,

Kevin Spencer
Microsoft MVP
..Net Developer
A brute awe as you,
a Metallic hag entity, eat us.
"c676228" <be****@community.nospam> wrote in message
news:0C**********************************@microsof t.com...
Hi all,
I don't know what the exact meaning in my case for this exception to be
thrown.
When my program execute the following statement:

item.NumPersonsOnTrxn = GetNumofPeoplePerTrxn(orderID, sProduct)

The system.stackoverflowexception was thrown.
The getNumberofPeoperPerTrxn is just a function defined as follow
Public Shared Function GetNumofPeoplePerTrxn(ByVal OrderID As String,
ByVal
Product As String) As Integer

and the item.NumPersonsOnTrxn is an Integer property define in a class
ProducerTabularReport(Item).
Can you give me a hint? Before the exception, the function
GetNumofPeoplePerTrxn(orderID, sProduct) return 2 in watch window,
item.NumPersonsOnTrxn is 0(byDefault I guess)

--
Betty


Feb 24 '06 #4
Hi all,
Maybe the problem came from calling function? Here is the code for my
calling function since the function call GetNumofPeoplePerTrxn(orderID,
sProduct)
is inside the for loop.

Because I after put try...end try block, I got :
Timeout expired. The timeout period elapsed prior to obtaining a connection
from the pool. This may have occurred because all pooled connections were in
use and max pool size was reached.

But I close the connection in GetNumofPeoplePerTrxn(orderID, sProduct) call.
SqlHelper is download from report start kits(asp 1.1), I didn't change
anything.
It has cn.dispose for each cn.open() I don't know the difference between
close and dispose.
/////' the following is my calling function
Public Shared Function GetProductDetailedReport(ByVal AgentID As String,
ByVal Product As String, ByVal StartDate As DateTime, ByVal EndDate As
DateTime) As ProducerTabularReportCollection
Dim dsData As DataSet =
SqlHelper.ExecuteDataset(ConfigurationSettings.App Settings(Global.CfgKeyConnString), "GetProductDetailedReport", AgentID, Product, StartDate, EndDate)
Dim items As New ProducerTabularReportCollection
Dim orderID As String
Dim sProduct As String
Dim row As DataRow
For Each row In dsData.Tables(0).Rows
Dim item As New ProducerTabularReport
item.AgentID = row("AgentID").ToString()
item.OrgName = row("Orgname").ToString()
item.Product = row("Product").ToString()
item.txnNumber = row("txnNumber").ToString()
orderID = Trim(row("Order_ID").ToString)
sProduct = Trim(row("Product").ToString())
Try
item.NumPersonsOnTrxn = GetNumofPeoplePerTrxn(orderID,
sProduct)
'End Select
Catch ex As Exception

Console.WriteLine(ex.Message)
End Try


item.TxnDate = Convert.ToDateTime(row("txnDate"))
item.txnSale = Convert.ToDecimal(row("txnSale"))
items.Add(item)
Next
Return items
End Function
--
Betty
"c676228" wrote:
Hi Kevin,
Here is the funciton. I just cannot see there will be an infinite loop here.
Thanks for your help.

Public Shared Function GetNumofPeoplePerTrxn(ByVal OrderID As String, ByVal
Product As String) As Integer
Dim nameArr(3) As String
Dim i, j As Integer
i = 1
Dim sqlConnection As SqlConnection = New
SqlConnection(ConfigurationSettings.AppSettings(Gl obal.CfgKeyConnString))
Dim myCommand As SqlCommand = New
SqlCommand("getNumPersonPerTrxn", sqlConnection)

myCommand.CommandType = CommandType.StoredProcedure
Dim pOrderID As SqlParameter = New SqlParameter("@OrderID",
SqlDbType.VarChar, 18)
pOrderID.Value = OrderID
myCommand.Parameters.Add(pOrderID)

Dim pProduct As SqlParameter = New SqlParameter("@Product",
SqlDbType.VarChar, 30)
pProduct.Value = Product
myCommand.Parameters.Add(pProduct)

sqlConnection.Open()
Dim result As SqlDataReader =
myCommand.ExecuteReader(CommandBehavior.CloseConne ction)
'expect only one record or none
If result.Read() Then
Select Case Product
Case "Travel Insurance Select"
If
CInt(result.GetValue(result.GetOrdinal("SelectPlus "))) = 1 Then
'code will be add here

End If
Case "InterMedical Insurance"
If
Trim(CStr(result.GetValue(result.GetOrdinal("Spous eSurname")))) <> "" Then
i = i + 1
End If
For j = 1 To 3
If
Trim(CStr(result.GetValue(result.GetOrdinal("Child " & j & "Surname")))) <> ""
Then
i = i + 1
End If
Next
End Select
End If
Return i
End Function
--
Betty
"Kevin Spencer" wrote:
Well, the first thing I can tell you is that the problem with the function
is not in the signature of the function, but in the code of the function.
That's what you need to post.

A stack overflow is usually caused by an infinite loop or infinite
recursion.

--
HTH,

Kevin Spencer
Microsoft MVP
..Net Developer
A brute awe as you,
a Metallic hag entity, eat us.
"c676228" <be****@community.nospam> wrote in message
news:0C**********************************@microsof t.com...
Hi all,
I don't know what the exact meaning in my case for this exception to be
thrown.
When my program execute the following statement:

item.NumPersonsOnTrxn = GetNumofPeoplePerTrxn(orderID, sProduct)

The system.stackoverflowexception was thrown.
The getNumberofPeoperPerTrxn is just a function defined as follow
Public Shared Function GetNumofPeoplePerTrxn(ByVal OrderID As String,
ByVal
Product As String) As Integer

and the item.NumPersonsOnTrxn is an Integer property define in a class
ProducerTabularReport(Item).
Can you give me a hint? Before the exception, the function
GetNumofPeoplePerTrxn(orderID, sProduct) return 2 in watch window,
item.NumPersonsOnTrxn is 0(byDefault I guess)

--
Betty


Feb 24 '06 #5

Hi all,
Now I caught something:

When I step through I got infinite loop of execution of these two lines

Set(ByVal Value As Integer)
NumPersonsOnTrxn = Value
End Set

No wonder it throw stackoverflow when it execute: item.NumPersonsOnTrxn =
GetNumofPeoplePerTrxn(orderID, sProduct).
But I still don't know how it happens.

( I also got infinite lines of the following in call stack window)

CSRreport.CSRreports.Components.ProducerTabularRep ort.set_NumPersonsOnTrxn(Integer Value = 1) Line 140 + 0xc bytes Basic

--
Betty
"c676228" wrote:
Hi all,
Maybe the problem came from calling function? Here is the code for my
calling function since the function call GetNumofPeoplePerTrxn(orderID,
sProduct)
is inside the for loop.

Because I after put try...end try block, I got :
Timeout expired. The timeout period elapsed prior to obtaining a connection
from the pool. This may have occurred because all pooled connections were in
use and max pool size was reached.

But I close the connection in GetNumofPeoplePerTrxn(orderID, sProduct) call.
SqlHelper is download from report start kits(asp 1.1), I didn't change
anything.
It has cn.dispose for each cn.open() I don't know the difference between
close and dispose.
/////' the following is my calling function
Public Shared Function GetProductDetailedReport(ByVal AgentID As String,
ByVal Product As String, ByVal StartDate As DateTime, ByVal EndDate As
DateTime) As ProducerTabularReportCollection
Dim dsData As DataSet =
SqlHelper.ExecuteDataset(ConfigurationSettings.App Settings(Global.CfgKeyConnString), "GetProductDetailedReport", AgentID, Product, StartDate, EndDate)
Dim items As New ProducerTabularReportCollection
Dim orderID As String
Dim sProduct As String
Dim row As DataRow
For Each row In dsData.Tables(0).Rows
Dim item As New ProducerTabularReport
item.AgentID = row("AgentID").ToString()
item.OrgName = row("Orgname").ToString()
item.Product = row("Product").ToString()
item.txnNumber = row("txnNumber").ToString()
orderID = Trim(row("Order_ID").ToString)
sProduct = Trim(row("Product").ToString())
Try
item.NumPersonsOnTrxn = GetNumofPeoplePerTrxn(orderID,
sProduct)
'End Select
Catch ex As Exception

Console.WriteLine(ex.Message)
End Try


item.TxnDate = Convert.ToDateTime(row("txnDate"))
item.txnSale = Convert.ToDecimal(row("txnSale"))
items.Add(item)
Next
Return items
End Function
--
Betty
"c676228" wrote:
Hi Kevin,
Here is the funciton. I just cannot see there will be an infinite loop here.
Thanks for your help.

Public Shared Function GetNumofPeoplePerTrxn(ByVal OrderID As String, ByVal
Product As String) As Integer
Dim nameArr(3) As String
Dim i, j As Integer
i = 1
Dim sqlConnection As SqlConnection = New
SqlConnection(ConfigurationSettings.AppSettings(Gl obal.CfgKeyConnString))
Dim myCommand As SqlCommand = New
SqlCommand("getNumPersonPerTrxn", sqlConnection)

myCommand.CommandType = CommandType.StoredProcedure
Dim pOrderID As SqlParameter = New SqlParameter("@OrderID",
SqlDbType.VarChar, 18)
pOrderID.Value = OrderID
myCommand.Parameters.Add(pOrderID)

Dim pProduct As SqlParameter = New SqlParameter("@Product",
SqlDbType.VarChar, 30)
pProduct.Value = Product
myCommand.Parameters.Add(pProduct)

sqlConnection.Open()
Dim result As SqlDataReader =
myCommand.ExecuteReader(CommandBehavior.CloseConne ction)
'expect only one record or none
If result.Read() Then
Select Case Product
Case "Travel Insurance Select"
If
CInt(result.GetValue(result.GetOrdinal("SelectPlus "))) = 1 Then
'code will be add here

End If
Case "InterMedical Insurance"
If
Trim(CStr(result.GetValue(result.GetOrdinal("Spous eSurname")))) <> "" Then
i = i + 1
End If
For j = 1 To 3
If
Trim(CStr(result.GetValue(result.GetOrdinal("Child " & j & "Surname")))) <> ""
Then
i = i + 1
End If
Next
End Select
End If
Return i
End Function
--
Betty
"Kevin Spencer" wrote:
Well, the first thing I can tell you is that the problem with the function
is not in the signature of the function, but in the code of the function.
That's what you need to post.

A stack overflow is usually caused by an infinite loop or infinite
recursion.

--
HTH,

Kevin Spencer
Microsoft MVP
..Net Developer
A brute awe as you,
a Metallic hag entity, eat us.
"c676228" <be****@community.nospam> wrote in message
news:0C**********************************@microsof t.com...
> Hi all,
> I don't know what the exact meaning in my case for this exception to be
> thrown.
> When my program execute the following statement:
>
> item.NumPersonsOnTrxn = GetNumofPeoplePerTrxn(orderID, sProduct)
>
> The system.stackoverflowexception was thrown.
> The getNumberofPeoperPerTrxn is just a function defined as follow
> Public Shared Function GetNumofPeoplePerTrxn(ByVal OrderID As String,
> ByVal
> Product As String) As Integer
>
> and the item.NumPersonsOnTrxn is an Integer property define in a class
> ProducerTabularReport(Item).
> Can you give me a hint? Before the exception, the function
> GetNumofPeoplePerTrxn(orderID, sProduct) return 2 in watch window,
> item.NumPersonsOnTrxn is 0(byDefault I guess)
>
> --
> Betty

Feb 24 '06 #6
Ok I caught it. That's because my silly typo cause this nasty problem. I
guess I shouldn't work on Fri.

I have a property in the class which looks like this:
Private _NumPersonsOnTrxn As Integer

Public Property NumPersonsOnTrxn() As Integer
Get
Return _NumPersonsOnTrxn
End Get
Set(ByVal Value As Integer)
NumPersonsOnTrxn = Value 'look at here, I typed
NumPersonsOnTrxn instead of _NumPersonsOnTrxn and then it cause recursive
call the Property NumPersonsOnTrxn.
'what a nasty mistake!

End Set
End Property
--
Betty
"c676228" wrote:

Hi all,
Now I caught something:

When I step through I got infinite loop of execution of these two lines

Set(ByVal Value As Integer)
NumPersonsOnTrxn = Value
End Set

No wonder it throw stackoverflow when it execute: item.NumPersonsOnTrxn =
GetNumofPeoplePerTrxn(orderID, sProduct).
But I still don't know how it happens.

( I also got infinite lines of the following in call stack window)

CSRreport.CSRreports.Components.ProducerTabularRep ort.set_NumPersonsOnTrxn(Integer Value = 1) Line 140 + 0xc bytes Basic

--
Betty
"c676228" wrote:
Hi all,
Maybe the problem came from calling function? Here is the code for my
calling function since the function call GetNumofPeoplePerTrxn(orderID,
sProduct)
is inside the for loop.

Because I after put try...end try block, I got :
Timeout expired. The timeout period elapsed prior to obtaining a connection
from the pool. This may have occurred because all pooled connections were in
use and max pool size was reached.

But I close the connection in GetNumofPeoplePerTrxn(orderID, sProduct) call.
SqlHelper is download from report start kits(asp 1.1), I didn't change
anything.
It has cn.dispose for each cn.open() I don't know the difference between
close and dispose.
/////' the following is my calling function
Public Shared Function GetProductDetailedReport(ByVal AgentID As String,
ByVal Product As String, ByVal StartDate As DateTime, ByVal EndDate As
DateTime) As ProducerTabularReportCollection
Dim dsData As DataSet =
SqlHelper.ExecuteDataset(ConfigurationSettings.App Settings(Global.CfgKeyConnString), "GetProductDetailedReport", AgentID, Product, StartDate, EndDate)
Dim items As New ProducerTabularReportCollection
Dim orderID As String
Dim sProduct As String
Dim row As DataRow
For Each row In dsData.Tables(0).Rows
Dim item As New ProducerTabularReport
item.AgentID = row("AgentID").ToString()
item.OrgName = row("Orgname").ToString()
item.Product = row("Product").ToString()
item.txnNumber = row("txnNumber").ToString()
orderID = Trim(row("Order_ID").ToString)
sProduct = Trim(row("Product").ToString())
Try
item.NumPersonsOnTrxn = GetNumofPeoplePerTrxn(orderID,
sProduct)
'End Select
Catch ex As Exception

Console.WriteLine(ex.Message)
End Try


item.TxnDate = Convert.ToDateTime(row("txnDate"))
item.txnSale = Convert.ToDecimal(row("txnSale"))
items.Add(item)
Next
Return items
End Function
--
Betty
"c676228" wrote:
Hi Kevin,
Here is the funciton. I just cannot see there will be an infinite loop here.
Thanks for your help.

Public Shared Function GetNumofPeoplePerTrxn(ByVal OrderID As String, ByVal
Product As String) As Integer
Dim nameArr(3) As String
Dim i, j As Integer
i = 1
Dim sqlConnection As SqlConnection = New
SqlConnection(ConfigurationSettings.AppSettings(Gl obal.CfgKeyConnString))
Dim myCommand As SqlCommand = New
SqlCommand("getNumPersonPerTrxn", sqlConnection)

myCommand.CommandType = CommandType.StoredProcedure
Dim pOrderID As SqlParameter = New SqlParameter("@OrderID",
SqlDbType.VarChar, 18)
pOrderID.Value = OrderID
myCommand.Parameters.Add(pOrderID)

Dim pProduct As SqlParameter = New SqlParameter("@Product",
SqlDbType.VarChar, 30)
pProduct.Value = Product
myCommand.Parameters.Add(pProduct)

sqlConnection.Open()
Dim result As SqlDataReader =
myCommand.ExecuteReader(CommandBehavior.CloseConne ction)
'expect only one record or none
If result.Read() Then
Select Case Product
Case "Travel Insurance Select"
If
CInt(result.GetValue(result.GetOrdinal("SelectPlus "))) = 1 Then
'code will be add here

End If
Case "InterMedical Insurance"
If
Trim(CStr(result.GetValue(result.GetOrdinal("Spous eSurname")))) <> "" Then
i = i + 1
End If
For j = 1 To 3
If
Trim(CStr(result.GetValue(result.GetOrdinal("Child " & j & "Surname")))) <> ""
Then
i = i + 1
End If
Next
End Select
End If
Return i
End Function
--
Betty
"Kevin Spencer" wrote:

> Well, the first thing I can tell you is that the problem with the function
> is not in the signature of the function, but in the code of the function.
> That's what you need to post.
>
> A stack overflow is usually caused by an infinite loop or infinite
> recursion.
>
> --
> HTH,
>
> Kevin Spencer
> Microsoft MVP
> ..Net Developer
> A brute awe as you,
> a Metallic hag entity, eat us.
>
>
> "c676228" <be****@community.nospam> wrote in message
> news:0C**********************************@microsof t.com...
> > Hi all,
> > I don't know what the exact meaning in my case for this exception to be
> > thrown.
> > When my program execute the following statement:
> >
> > item.NumPersonsOnTrxn = GetNumofPeoplePerTrxn(orderID, sProduct)
> >
> > The system.stackoverflowexception was thrown.
> > The getNumberofPeoperPerTrxn is just a function defined as follow
> > Public Shared Function GetNumofPeoplePerTrxn(ByVal OrderID As String,
> > ByVal
> > Product As String) As Integer
> >
> > and the item.NumPersonsOnTrxn is an Integer property define in a class
> > ProducerTabularReport(Item).
> > Can you give me a hint? Before the exception, the function
> > GetNumofPeoplePerTrxn(orderID, sProduct) return 2 in watch window,
> > item.NumPersonsOnTrxn is 0(byDefault I guess)
> >
> > --
> > Betty
>
>
>

Feb 25 '06 #7

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

Similar topics

5
17244
by: Jesee | last post by:
I am reading Jeffrey Richter's book "Applied Microsoft .NET Framework programming",i came across "Exception handing". Page 405 says "If the stack overflow occurs within the CLR itself,your...
2
2806
by: Anders Both | last post by:
In a system with asynkronius socket and different collection, there are some times throw a System.StackOverflowException . I cannot really figur out why , Can someone say something clever about...
0
1326
by: Elizabeth | last post by:
I have C# dll which I compile using ComInterop True and generate tlb type library. When I call function from the C# dll using below code I get an error "StackOverflowException in mscorlib.dll" ...
3
3659
by: Vladimir Arkhipov | last post by:
Hi, I noticed that finally block is not executed once I got StackOverflowException. Is that a known feature or a bug?
11
2871
by: Alx Sharp | last post by:
Hello group... I've created a collection class that implements the following interfaces: IBindingList, IList, ICollection, IEnumerable and ITypedList: abstract class DataCollectionBase :...
20
3343
by: zapov | last post by:
Hi! I'm having some wierd problems with this exception (error). If I use sql commands to insert data into sql server i get strange behaviour from my application. First I used a single...
3
3547
by: Patrick.O.Ige | last post by:
Error:- System.StackOverflowException: Exception of type System.StackOverflowException was thrown. When is this thrown.. Any ideas
8
2472
by: Lars-Erik Aabech | last post by:
Hi! I've got an asp.net page that works for all users except one and that one user only gets the error with a certain parameter set to a certain value. (Same value as the others, but for this...
10
14816
by: Mae Lim | last post by:
Dear all, I'm new to C# WebServices. I compile the WebService project it return no errors "Build: 1 succeeded, 0 failed, 0 skipped". Basically I have 2 WebMethod, when I try to invoke the...
1
2067
by: Thomee Wright | last post by:
I'm having a problem with a pair of applications I'm developing. I have a server application which interacts with several instruments, and a client app which connects to the server and provides a...
0
7067
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
7264
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
6975
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
5562
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
4666
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
3160
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
1495
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
728
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
0
371
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...

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.