473,395 Members | 1,656 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,395 software developers and data experts.

Can't trap error in called routine

I'm using the following routine to call UpdateDiary() - below:
Private Sub Form_BeforeUpdate(Cancel As Integer)
On Error GoTo Form_BeforeUpdate_Error

Call UpdateDiary(Me!TenantCounter, "sfTenantDetailsOther")

Exit Sub
Form_BeforeUpdate_Error:
MsgBox "Error " & Err.Number & " (" & Err.Description & ") " _
& "in procedure Form_BeforeUpdate in Line " & Erl & "."
Exit Sub
End Sub

Function UpdateDiary(vTenantCounter As Long, strSource As String) As
Boolean
On Error GoTo ErrorUpdateDiary
'Called from Form Before update
Dim db As Database, rsEvents As Recordset
Dim sf As Control, ctrl As Control
Dim strFld As String, vNewDate As Variant, vOldDate As Variant

Set db = CurrentDb

Set sf = Forms!fTenantDetails(strSource)
Set rsEvents = db.OpenRecordset("SELECT * FROM tDiaryEventTypes
WHERE TypeID < 20")
With rsEvents
Do Until .EOF
strFld = !LinkedField
vNewDate = sf.Form(strFld)
vOldDate = sf.Form(strFld).OldValue
vNewDate <Nz(vOldDate, 0) Then
etc etc etc
NextEvent:
.MoveNext
Loop
End With

UpdateDiary = True

CloseFunction:
On Error Resume Next
DoCmd.Hourglass False
Exit Function

ErrorUpdateDiary:
If Err = 438 Then
GoTo NextEvent 'Can only read 'OldValue' if control is on form
Else
MsgBox Error$ & " " & Err
End If
Resume CloseFunction
End Function

rsEvents lists a number of fields, which can be on any one of a number of
subforms.
The Field and Control Names are identical.
It works fine provided the field is found. But if the field doesn't exist on
the subform being checked, the UpdateDiary routine fails and returns to the
calling sub error code.
Can anyone tell me why doesn't it go to the error code in UpdateDiary?

--
Bob Darlington
Brisbane
Feb 20 '07 #1
7 2403
Forgot to mention the error generated from the calling routine is 2465 -
"Can't find field ...."

--
Bob Darlington
Brisbane
"Bob Darlington" <bo*@dpcmanAX.com.auwrote in message
news:45**********************@news.optusnet.com.au ...
I'm using the following routine to call UpdateDiary() - below:
Private Sub Form_BeforeUpdate(Cancel As Integer)
On Error GoTo Form_BeforeUpdate_Error

Call UpdateDiary(Me!TenantCounter, "sfTenantDetailsOther")

Exit Sub
Form_BeforeUpdate_Error:
MsgBox "Error " & Err.Number & " (" & Err.Description & ") " _
& "in procedure Form_BeforeUpdate in Line " & Erl & "."
Exit Sub
End Sub

Function UpdateDiary(vTenantCounter As Long, strSource As String) As
Boolean
On Error GoTo ErrorUpdateDiary
'Called from Form Before update
Dim db As Database, rsEvents As Recordset
Dim sf As Control, ctrl As Control
Dim strFld As String, vNewDate As Variant, vOldDate As Variant

Set db = CurrentDb

Set sf = Forms!fTenantDetails(strSource)
Set rsEvents = db.OpenRecordset("SELECT * FROM tDiaryEventTypes
WHERE TypeID < 20")
With rsEvents
Do Until .EOF
strFld = !LinkedField
vNewDate = sf.Form(strFld)
vOldDate = sf.Form(strFld).OldValue
vNewDate <Nz(vOldDate, 0) Then
etc etc etc
NextEvent:
.MoveNext
Loop
End With

UpdateDiary = True

CloseFunction:
On Error Resume Next
DoCmd.Hourglass False
Exit Function

ErrorUpdateDiary:
If Err = 438 Then
GoTo NextEvent 'Can only read 'OldValue' if control is on form
Else
MsgBox Error$ & " " & Err
End If
Resume CloseFunction
End Function

rsEvents lists a number of fields, which can be on any one of a number of
subforms.
The Field and Control Names are identical.
It works fine provided the field is found. But if the field doesn't exist
on the subform being checked, the UpdateDiary routine fails and returns to
the calling sub error code.
Can anyone tell me why doesn't it go to the error code in UpdateDiary?

--
Bob Darlington
Brisbane

Feb 20 '07 #2
On Feb 20, 1:41 am, "Bob Darlington" <b...@dpcmanAX.com.auwrote:
Forgot to mention the error generated from the calling routine is 2465 -
"Can't find field ...."

--
Bob Darlington
Brisbane"Bob Darlington" <b...@dpcmanAX.com.auwrote in message

news:45**********************@news.optusnet.com.au ...
I'm using the following routine to call UpdateDiary() - below:
Private Sub Form_BeforeUpdate(Cancel As Integer)
On Error GoTo Form_BeforeUpdate_Error
Call UpdateDiary(Me!TenantCounter, "sfTenantDetailsOther")
Exit Sub
Form_BeforeUpdate_Error:
MsgBox "Error " & Err.Number & " (" & Err.Description & ") " _
& "in procedure Form_BeforeUpdate in Line " & Erl & "."
Exit Sub
End Sub
Function UpdateDiary(vTenantCounter As Long, strSource As String) As
Boolean
On Error GoTo ErrorUpdateDiary
'Called from Form Before update
Dim db As Database, rsEvents As Recordset
Dim sf As Control, ctrl As Control
Dim strFld As String, vNewDate As Variant, vOldDate As Variant
Set db = CurrentDb
Set sf = Forms!fTenantDetails(strSource)
Set rsEvents = db.OpenRecordset("SELECT * FROM tDiaryEventTypes
WHERE TypeID < 20")
With rsEvents
Do Until .EOF
strFld = !LinkedField
vNewDate = sf.Form(strFld)
vOldDate = sf.Form(strFld).OldValue
vNewDate <Nz(vOldDate, 0) Then
etc etc etc
NextEvent:
.MoveNext
Loop
End With
UpdateDiary = True
CloseFunction:
On Error Resume Next
DoCmd.Hourglass False
Exit Function
ErrorUpdateDiary:
If Err = 438 Then
GoTo NextEvent 'Can only read 'OldValue' if control is on form
Else
MsgBox Error$ & " " & Err
End If
Resume CloseFunction
End Function
rsEvents lists a number of fields, which can be on any one of a number of
subforms.
The Field and Control Names are identical.
It works fine provided the field is found. But if the field doesn't exist
on the subform being checked, the UpdateDiary routine fails and returns to
the calling sub error code.
Can anyone tell me why doesn't it go to the error code in UpdateDiary?
--
Bob Darlington
Brisbane

In the code window, under Tools, Options - "General" tab, do you have
have 'Break on Unhandled Errors' selected in the Error Trapping
section? If not, you'll need to select this in order for your error
handler to work correctly.

Bruce

Feb 20 '07 #3
On Feb 20, 2:41 am, "Bob Darlington" <b...@dpcmanAX.com.auwrote:
Forgot to mention the error generated from the calling routine is 2465 -
"Can't find field ...."

--
Bob Darlington
Brisbane"Bob Darlington" <b...@dpcmanAX.com.auwrote in message

news:45**********************@news.optusnet.com.au ...
I'm using the following routine to call UpdateDiary() - below:
Private Sub Form_BeforeUpdate(Cancel As Integer)
On Error GoTo Form_BeforeUpdate_Error
Call UpdateDiary(Me!TenantCounter, "sfTenantDetailsOther")
Exit Sub
Form_BeforeUpdate_Error:
MsgBox "Error " & Err.Number & " (" & Err.Description & ") " _
& "in procedure Form_BeforeUpdate in Line " & Erl & "."
Exit Sub
End Sub
Function UpdateDiary(vTenantCounter As Long, strSource As String) As
Boolean
On Error GoTo ErrorUpdateDiary
'Called from Form Before update
Dim db As Database, rsEvents As Recordset
Dim sf As Control, ctrl As Control
Dim strFld As String, vNewDate As Variant, vOldDate As Variant
Set db = CurrentDb
Set sf = Forms!fTenantDetails(strSource)
Set rsEvents = db.OpenRecordset("SELECT * FROM tDiaryEventTypes
WHERE TypeID < 20")
With rsEvents
Do Until .EOF
strFld = !LinkedField
vNewDate = sf.Form(strFld)
vOldDate = sf.Form(strFld).OldValue
vNewDate <Nz(vOldDate, 0) Then
etc etc etc
NextEvent:
.MoveNext
Loop
End With
UpdateDiary = True
CloseFunction:
On Error Resume Next
DoCmd.Hourglass False
Exit Function
ErrorUpdateDiary:
If Err = 438 Then
GoTo NextEvent 'Can only read 'OldValue' if control is on form
Else
MsgBox Error$ & " " & Err
End If
Resume CloseFunction
End Function
rsEvents lists a number of fields, which can be on any one of a number of
subforms.
The Field and Control Names are identical.
It works fine provided the field is found. But if the field doesn't exist
on the subform being checked, the UpdateDiary routine fails and returns to
the calling sub error code.
Can anyone tell me why doesn't it go to the error code in UpdateDiary?
--
Bob Darlington
Brisbane

If you expect the 2465 error to occur because a control may or may not
be there, it would be better to revise your code to account for it.
Include a check to see if the error is 2465, then either Resume Next
or Resume something else. Also, I believe the only time an error event
completes itself is when a Resume, Exit or End statement is
encountered. I'm not sure using the Goto in your handler resets the
error event. You should use Resume NextEvent. If you encounter an
error before the first is dealt with, I think the proceedure stops
entirely.

Feb 20 '07 #4
Thanks for the reply Bruce. I did have that check box checked.

--
Bob Darlington
Brisbane
"Bruce" <de***************@gmail.comwrote in message
news:11**********************@h3g2000cwc.googlegro ups.com...
On Feb 20, 1:41 am, "Bob Darlington" <b...@dpcmanAX.com.auwrote:
>Forgot to mention the error generated from the calling routine is 2465 -
"Can't find field ...."

--
Bob Darlington
Brisbane"Bob Darlington" <b...@dpcmanAX.com.auwrote in message

news:45**********************@news.optusnet.com.a u...
I'm using the following routine to call UpdateDiary() - below:
Private Sub Form_BeforeUpdate(Cancel As Integer)
On Error GoTo Form_BeforeUpdate_Error
Call UpdateDiary(Me!TenantCounter, "sfTenantDetailsOther")
Exit Sub
Form_BeforeUpdate_Error:
MsgBox "Error " & Err.Number & " (" & Err.Description & ") " _
& "in procedure Form_BeforeUpdate in Line " & Erl & "."
Exit Sub
End Sub
Function UpdateDiary(vTenantCounter As Long, strSource As String) As
Boolean
On Error GoTo ErrorUpdateDiary
'Called from Form Before update
Dim db As Database, rsEvents As Recordset
Dim sf As Control, ctrl As Control
Dim strFld As String, vNewDate As Variant, vOldDate As Variant
Set db = CurrentDb
Set sf = Forms!fTenantDetails(strSource)
Set rsEvents = db.OpenRecordset("SELECT * FROM tDiaryEventTypes
WHERE TypeID < 20")
With rsEvents
Do Until .EOF
strFld = !LinkedField
vNewDate = sf.Form(strFld)
vOldDate = sf.Form(strFld).OldValue
vNewDate <Nz(vOldDate, 0) Then
etc etc etc
NextEvent:
.MoveNext
Loop
End With
UpdateDiary = True
CloseFunction:
On Error Resume Next
DoCmd.Hourglass False
Exit Function
ErrorUpdateDiary:
If Err = 438 Then
GoTo NextEvent 'Can only read 'OldValue' if control is on form
Else
MsgBox Error$ & " " & Err
End If
Resume CloseFunction
End Function
rsEvents lists a number of fields, which can be on any one of a number
of
subforms.
The Field and Control Names are identical.
It works fine provided the field is found. But if the field doesn't
exist
on the subform being checked, the UpdateDiary routine fails and returns
to
the calling sub error code.
Can anyone tell me why doesn't it go to the error code in UpdateDiary?
--
Bob Darlington
Brisbane


In the code window, under Tools, Options - "General" tab, do you have
have 'Break on Unhandled Errors' selected in the Error Trapping
section? If not, you'll need to select this in order for your error
handler to work correctly.

Bruce

Feb 21 '07 #5


--
Bob Darlington
Brisbane
"storrboy" <st******@sympatico.cawrote in message
news:11**********************@l53g2000cwa.googlegr oups.com...
On Feb 20, 2:41 am, "Bob Darlington" <b...@dpcmanAX.com.auwrote:
>Forgot to mention the error generated from the calling routine is 2465 -
"Can't find field ...."

--
Bob Darlington
Brisbane"Bob Darlington" <b...@dpcmanAX.com.auwrote in message

news:45**********************@news.optusnet.com.a u...
I'm using the following routine to call UpdateDiary() - below:
Private Sub Form_BeforeUpdate(Cancel As Integer)
On Error GoTo Form_BeforeUpdate_Error
Call UpdateDiary(Me!TenantCounter, "sfTenantDetailsOther")
Exit Sub
Form_BeforeUpdate_Error:
MsgBox "Error " & Err.Number & " (" & Err.Description & ") " _
& "in procedure Form_BeforeUpdate in Line " & Erl & "."
Exit Sub
End Sub
Function UpdateDiary(vTenantCounter As Long, strSource As String) As
Boolean
On Error GoTo ErrorUpdateDiary
'Called from Form Before update
Dim db As Database, rsEvents As Recordset
Dim sf As Control, ctrl As Control
Dim strFld As String, vNewDate As Variant, vOldDate As Variant
Set db = CurrentDb
Set sf = Forms!fTenantDetails(strSource)
Set rsEvents = db.OpenRecordset("SELECT * FROM tDiaryEventTypes
WHERE TypeID < 20")
With rsEvents
Do Until .EOF
strFld = !LinkedField
vNewDate = sf.Form(strFld)
vOldDate = sf.Form(strFld).OldValue
vNewDate <Nz(vOldDate, 0) Then
etc etc etc
NextEvent:
.MoveNext
Loop
End With
UpdateDiary = True
CloseFunction:
On Error Resume Next
DoCmd.Hourglass False
Exit Function
ErrorUpdateDiary:
If Err = 438 Then
GoTo NextEvent 'Can only read 'OldValue' if control is on form
Else
MsgBox Error$ & " " & Err
End If
Resume CloseFunction
End Function
rsEvents lists a number of fields, which can be on any one of a number
of
subforms.
The Field and Control Names are identical.
It works fine provided the field is found. But if the field doesn't
exist
on the subform being checked, the UpdateDiary routine fails and returns
to
the calling sub error code.
Can anyone tell me why doesn't it go to the error code in UpdateDiary?
--
Bob Darlington
Brisbane


If you expect the 2465 error to occur because a control may or may not
be there, it would be better to revise your code to account for it.
Include a check to see if the error is 2465, then either Resume Next
or Resume something else. Also, I believe the only time an error event
completes itself is when a Resume, Exit or End statement is
encountered. I'm not sure using the Goto in your handler resets the
error event. You should use Resume NextEvent. If you encounter an
error before the first is dealt with, I think the proceedure stops
entirely.
Thanks for the reply.
The problem is how to check for the error.
At present, if the field is not found, it jumps back to the calling routine,
bypassing the error code in the called routine.
Feb 21 '07 #6
On Feb 20, 8:20 pm, "Bob Darlington" <b...@dpcmanAX.com.auwrote:
--
Bob Darlington
Brisbane"storrboy" <storr...@sympatico.cawrote in message

news:11**********************@l53g2000cwa.googlegr oups.com...
On Feb 20, 2:41 am, "Bob Darlington" <b...@dpcmanAX.com.auwrote:
Forgot to mention the error generated from the calling routine is 2465 -
"Can't find field ...."
--
Bob Darlington
Brisbane"Bob Darlington" <b...@dpcmanAX.com.auwrote in message
>news:45**********************@news.optusnet.com.a u...
I'm using the following routine to call UpdateDiary() - below:
Private Sub Form_BeforeUpdate(Cancel As Integer)
On Error GoTo Form_BeforeUpdate_Error
Call UpdateDiary(Me!TenantCounter, "sfTenantDetailsOther")
Exit Sub
Form_BeforeUpdate_Error:
MsgBox "Error " & Err.Number & " (" & Err.Description & ") " _
& "in procedure Form_BeforeUpdate in Line " & Erl & "."
Exit Sub
End Sub
Function UpdateDiary(vTenantCounter As Long, strSource As String) As
Boolean
On Error GoTo ErrorUpdateDiary
'Called from Form Before update
Dim db As Database, rsEvents As Recordset
Dim sf As Control, ctrl As Control
Dim strFld As String, vNewDate As Variant, vOldDate As Variant
Set db = CurrentDb
Set sf = Forms!fTenantDetails(strSource)
Set rsEvents = db.OpenRecordset("SELECT * FROM tDiaryEventTypes
WHERE TypeID < 20")
With rsEvents
Do Until .EOF
strFld = !LinkedField
vNewDate = sf.Form(strFld)
vOldDate = sf.Form(strFld).OldValue
vNewDate <Nz(vOldDate, 0) Then
etc etc etc
NextEvent:
.MoveNext
Loop
End With
UpdateDiary = True
CloseFunction:
On Error Resume Next
DoCmd.Hourglass False
Exit Function
ErrorUpdateDiary:
If Err = 438 Then
GoTo NextEvent 'Can only read 'OldValue' if control is on form
Else
MsgBox Error$ & " " & Err
End If
Resume CloseFunction
End Function
rsEvents lists a number of fields, which can be on any one of a number
of
subforms.
The Field and Control Names are identical.
It works fine provided the field is found. But if the field doesn't
exist
on the subform being checked, the UpdateDiary routine fails and returns
to
the calling sub error code.
Can anyone tell me why doesn't it go to the error code in UpdateDiary?
--
Bob Darlington
Brisbane
If you expect the 2465 error to occur because a control may or may not
be there, it would be better to revise your code to account for it.
Include a check to see if the error is 2465, then either Resume Next
or Resume something else. Also, I believe the only time an error event
completes itself is when a Resume, Exit or End statement is
encountered. I'm not sure using the Goto in your handler resets the
error event. You should use Resume NextEvent. If you encounter an
error before the first is dealt with, I think the proceedure stops
entirely.

Thanks for the reply.
The problem is how to check for the error.
At present, if the field is not found, it jumps back to the calling routine,
bypassing the error code in the called routine.

And I think that's because your not fully handling the error. It
should probably look something like this instead...

ErrorUpdateDiary:
Select Case Err.Number
Case 438, 2465 'Can only read 'OldValue' if control
is on form
Resume Next Event
Case Else
MsgBox Err.Number & " - " & Err.Description
Resume CloseFunction
End Select
End Function

Feb 21 '07 #7

"storrboy" <st******@sympatico.cawrote in message
news:11********************@s48g2000cws.googlegrou ps.com...
On Feb 20, 8:20 pm, "Bob Darlington" <b...@dpcmanAX.com.auwrote:
>--
Bob Darlington
Brisbane"storrboy" <storr...@sympatico.cawrote in message

news:11**********************@l53g2000cwa.googleg roups.com...
On Feb 20, 2:41 am, "Bob Darlington" <b...@dpcmanAX.com.auwrote:
Forgot to mention the error generated from the calling routine is
2465 -
"Can't find field ...."
>--
Bob Darlington
Brisbane"Bob Darlington" <b...@dpcmanAX.com.auwrote in message
>>news:45**********************@news.optusnet.com. au...
I'm using the following routine to call UpdateDiary() - below:
Private Sub Form_BeforeUpdate(Cancel As Integer)
On Error GoTo Form_BeforeUpdate_Error
Call UpdateDiary(Me!TenantCounter, "sfTenantDetailsOther")
Exit Sub
Form_BeforeUpdate_Error:
MsgBox "Error " & Err.Number & " (" & Err.Description & ") "
_
& "in procedure Form_BeforeUpdate in Line " & Erl &
"."
Exit Sub
End Sub
Function UpdateDiary(vTenantCounter As Long, strSource As String)
As
Boolean
On Error GoTo ErrorUpdateDiary
'Called from Form Before update
Dim db As Database, rsEvents As Recordset
Dim sf As Control, ctrl As Control
Dim strFld As String, vNewDate As Variant, vOldDate As
Variant
Set db = CurrentDb
Set sf = Forms!fTenantDetails(strSource)
Set rsEvents = db.OpenRecordset("SELECT * FROM
tDiaryEventTypes
WHERE TypeID < 20")
With rsEvents
Do Until .EOF
strFld = !LinkedField
vNewDate = sf.Form(strFld)
vOldDate = sf.Form(strFld).OldValue
vNewDate <Nz(vOldDate, 0) Then
etc etc etc
NextEvent:
.MoveNext
Loop
End With
UpdateDiary = True
CloseFunction:
On Error Resume Next
DoCmd.Hourglass False
Exit Function
ErrorUpdateDiary:
If Err = 438 Then
GoTo NextEvent 'Can only read 'OldValue' if control is on
form
Else
MsgBox Error$ & " " & Err
End If
Resume CloseFunction
End Function
rsEvents lists a number of fields, which can be on any one of a
number
of
subforms.
The Field and Control Names are identical.
It works fine provided the field is found. But if the field doesn't
exist
on the subform being checked, the UpdateDiary routine fails and
returns
to
the calling sub error code.
Can anyone tell me why doesn't it go to the error code in
UpdateDiary?
--
Bob Darlington
Brisbane
If you expect the 2465 error to occur because a control may or may not
be there, it would be better to revise your code to account for it.
Include a check to see if the error is 2465, then either Resume Next
or Resume something else. Also, I believe the only time an error event
completes itself is when a Resume, Exit or End statement is
encountered. I'm not sure using the Goto in your handler resets the
error event. You should use Resume NextEvent. If you encounter an
error before the first is dealt with, I think the proceedure stops
entirely.

Thanks for the reply.
The problem is how to check for the error.
At present, if the field is not found, it jumps back to the calling
routine,
bypassing the error code in the called routine.


And I think that's because your not fully handling the error. It
should probably look something like this instead...

ErrorUpdateDiary:
Select Case Err.Number
Case 438, 2465 'Can only read 'OldValue' if control
is on form
Resume Next Event
Case Else
MsgBox Err.Number & " - " & Err.Description
Resume CloseFunction
End Select
End Function
Thanks for the reply, and sorry I'm late responding.
The problem was that the error wouldn't trigger 'ErrorUpdateDiary'. It just
went back to the calling routine.
But your earlier response gave me a clue and I've since used:
On Error GoTo ErrorFieldNotFound
vFld = sf(strFld)
vNewDate = sf(strFld)
vOldDate = sf(strFld).OldValue
On Error GoTo ErrorUpdateDiary

ErrorFieldNotFound:
Err.Clear
Resume NextEvent

and it works OK.
But I still can't figure why the jump to the calling routine occurred. Every
prior error should have been dealt with by the called routine. And how did
the calling routine get details of the error from the called routine?

Anyhow, thanks for your help.

--
Bob Darlington
Brisbane
Feb 27 '07 #8

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

Similar topics

3
by: Lord Merlin | last post by:
When using "if then" statements in global, I get the following error: a.. Error Type: (0x8002802B) Element not found. //global.asa, line 12 Can I use if then statements in global?
10
by: Mike D | last post by:
I have a table in SQL 2000 with a composite Primary Key on coulumns Instrument_ID (int) and WeekOf (smalldatetime.) I am running asp on win 2003. I insert values using a stored procedure from...
2
by: Susan Bricker | last post by:
Hi. I have a routine (BldEmail) that is causing an error on my user's PC but not on mine. HELP!!! I have to fix this tonight. She reports an error with err.number=429 and the error message...
2
by: john | last post by:
In a button I have this code: Testfield.SetFocus DoCmd.RunCommand acCmdPaste When the clipboard is empty this gives an error saying that this action is not available at the moment. I'd like...
4
by: etuncer | last post by:
Hello All, I have Access 2003, and am trying to build a database for my small company. I want to be able to create a word document based on the data entered through a form. the real question is...
4
by: Darin | last post by:
I have a public class that I use to read columns out of a SQL database. In the try, catch, loop I want to display the error, and in the error I want to display the calling routine (and helpfully...
5
by: Yvonne | last post by:
Hi, I have this Access 2003 DB that handles Clients and their respective items of correspondence in a one to many relationship. Clients details are entered in frmPerson. When it comes to...
5
by: Mahendra Kumar Kutare | last post by:
I am trying to implement a webserver with boss-worker model thread pool implementation - I have a header declaration threadpool.h as - typedef struct threadpool_work { void (*routine) ();...
33
by: insirawali | last post by:
I have written this in C#. I just need to convert it into C. da problem comes when handling the String. In C the String doesn't behave the same way as in C#. it would be great help if...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
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,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...

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.