473,404 Members | 2,174 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,404 software developers and data experts.

Adding 5 working days to a start date

If I set up a task table with an Date_assigned and a number of days to complete the task I calculate the end_date field by using the code below I found in this forum

How ever when I enter the Date_assigned and update the record, nothing happens until I manually enter a value in the DaysToComplete field. I want to keep DaysToComplete Constant (5 Days) so I tried to set the attribute in the table with 5 as the default but this does not work. Is there any way I can get the form to calculate the end date without having to enter the DaysToComplete value manually in the form? Thank you very much for your help

Expand|Select|Wrap|Line Numbers
  1. Public Function CountDays(startDate As Date, NoOfDays As Integer) As Integer
  2. ' Function to count no of working days
  3. Dim tmpNo As Integer
  4. Dim tmpDate As Date
  5. Dim i As Integer
  6.     tmpNo = NoOfDays
  7.     tmpDate = startDate
  8.  
  9.     i = 0
  10.     Do Until i = NoOfDays
  11.         If Weekday(tmpDate) = 1 Or Weekday(tmpDate) = 7 Then
  12.             tmpNo = tmpNo + 1
  13.         Else
  14.             i = i + 1
  15.         End If
  16.         tmpDate = tmpDate + 1
  17.     Loop
  18.  
  19.     CountDays = tmpNo
  20.  
  21. End Function





Expand|Select|Wrap|Line Numbers
  1. Private Sub StartDate_AfterUpdate()
  2.     If Not IsNull(Me.NoOfDays) Then
  3.         Me.EndDate = Me.StartDate + CountDays(Me.StartDate, Me.NoOfDays)
  4.     End If
  5. End Sub






Expand|Select|Wrap|Line Numbers
  1. Private Sub NoOfDays_AfterUpdate()
  2.     If Not IsNull(Me.StartDate) Then
  3.         Me.EndDate = Me.StartDate + CountDays(Me.StartDate, Me.NoOfDays)
  4.     End If
  5. End Sub
  6.  
Jan 31 '07 #1
29 3192
NeoPa
32,556 Expert Mod 16PB
So, you just want to ignore the Me!NoOfDays field completely and use the value 5 in its stead in all situations?
Feb 1 '07 #2
NeoPa
32,556 Expert Mod 16PB
If that is the case then you need to use this procedure :
Expand|Select|Wrap|Line Numbers
  1. Private Sub StartDate_AfterUpdate()
  2.     If IsNull(Me!StartDate) Then Exit Sub
  3.     Me!EndDate = Me!StartDate + CountDays(Me!StartDate, 5)
  4. End Sub
You can lose the whole NoOfDays control as it's no longer required.
Feb 1 '07 #3
If that is the case then you need to use this procedure :
Expand|Select|Wrap|Line Numbers
  1. Private Sub StartDate_AfterUpdate()
  2.     If IsNull(Me!StartDate) Then Exit Sub
  3.     Me!EndDate = Me!StartDate + CountDays(Me!StartDate, 5)
  4. End Sub
You can lose the whole NoOfDays control as it's no longer required.

Thank you very much. This is exactly what I want to do. Unfurtanetly I tried it and I didn't work.

Here is the code I am using.

Expand|Select|Wrap|Line Numbers
  1. Public Function CountDays(Date_Assigned As Date, DaysToComplete As Integer) As Integer
  2. ' Function to count no of working days
  3. Dim tmpNo As Integer
  4. Dim tmpDate As Date
  5. Dim i As Integer
  6.     tmpNo = DaysToComplete
  7.     tmpDate = Date_Assigned
  8.  
  9.     i = 0
  10.     Do Until i = DaysToComplete
  11.         If Weekday(tmpDate) = 1 Or Weekday(tmpDate) = 7 Then
  12.             tmpNo = tmpNo + 1
  13.         Else
  14.             i = i + 1
  15.         End If
  16.         tmpDate = tmpDate + 1
  17.     Loop
  18.  
  19.     CountDays = tmpNo
  20.  
  21. End Function

And this is the code for the Date_Assigned Control

Expand|Select|Wrap|Line Numbers
  1. Private Sub Date_Assigned_AfterUpdate()
  2.     If IsNull(Me.Date_Assigned) Then Exit Sub
  3.         Me.Turnaround = Me.Date_Assigned + CountDays(Me.Date_Assigned, 5)
  4.     End If
  5. End Sub
Feb 1 '07 #4
Thank you very much. This is exactly what I want to do. Unfurtanetly I tried it and I didn't work.

Here is the code I am using.

Expand|Select|Wrap|Line Numbers
  1. Public Function CountDays(Date_Assigned As Date, DaysToComplete As Integer) As Integer
  2. ' Function to count no of working days
  3. Dim tmpNo As Integer
  4. Dim tmpDate As Date
  5. Dim i As Integer
  6.     tmpNo = DaysToComplete
  7.     tmpDate = Date_Assigned
  8.  
  9.     i = 0
  10.     Do Until i = DaysToComplete
  11.         If Weekday(tmpDate) = 1 Or Weekday(tmpDate) = 7 Then
  12.             tmpNo = tmpNo + 1
  13.         Else
  14.             i = i + 1
  15.         End If
  16.         tmpDate = tmpDate + 1
  17.     Loop
  18.  
  19.     CountDays = tmpNo
  20.  
  21. End Function

And this is the code for the Date_Assigned Control

Expand|Select|Wrap|Line Numbers
  1. Private Sub Date_Assigned_AfterUpdate()
  2.     If IsNull(Me.Date_Assigned) Then Exit Sub
  3.         Me.Turnaround = Me.Date_Assigned + CountDays(Me.Date_Assigned, 5)
  4.     End If
  5. End Sub

I removed NoOfDays from the task table and renamed EndDate to Turnaround
Feb 1 '07 #5
Do I need to modify the function by removing DaysToComplete?

Sorry I am trying to tweak the code but I don't really understand what it's doing.

here is what I have again

Expand|Select|Wrap|Line Numbers
  1. Public Function CountDays(Date_Assigned As Date, DaysToComplete As Integer) As Integer
  2. ' Function to count no of working days
  3. Dim tmpNo As Integer
  4. Dim tmpDate As Date
  5. Dim i As Integer
  6.     tmpNo = DaysToComplete
  7.     tmpDate = Date_Assigned
  8.  
  9.     i = 0
  10.     Do Until i = DaysToComplete
  11.         If Weekday(tmpDate) = 1 Or Weekday(tmpDate) = 7 Then
  12.             tmpNo = tmpNo + 1
  13.         Else
  14.             i = i + 1
  15.         End If
  16.         tmpDate = tmpDate + 1
  17.     Loop
  18.  
  19.     CountDays = tmpNo
  20.  
  21. End Function


For the Control

Expand|Select|Wrap|Line Numbers
  1. Private Sub Date_Assigned_AfterUpdate()
  2.     If IsNull(Me!Date_Assigned) Then Exit Sub
  3.         Me!Turnaround = Me!Date_Assigned + CountDays(Me!Date_Assigned, 5)
  4. End Sub
Sorry Don't mean to bug you with all these questions but I am bit stuck.
Feb 1 '07 #6
NeoPa
32,556 Expert Mod 16PB
Do I need to modify the function by removing DaysToComplete?
No!
Your code should be :
Expand|Select|Wrap|Line Numbers
  1. Public Function CountDays(Date_Assigned As Date, _
  2.                           DaysToComplete As Integer) As Integer
  3. 'Function to return no of days forward to match no of working days passed
  4. Dim tmpDate As Date
  5. Dim i As Integer
  6.     CountDays = DaysToComplete
  7.     tmpDate = Date_Assigned
  8.  
  9.     For i = 1 To DaysToComplete
  10.         If Weekday(tmpDate, vbSaturday) < 3 Then
  11.             CountDays = CountDays + 1
  12.             i = i - 1
  13.         End If
  14.         tmpDate = tmpDate + 1
  15.     Next i
  16. End Function


For the Control

Expand|Select|Wrap|Line Numbers
  1. Private Sub Date_Assigned_AfterUpdate()
  2.     If IsNull(Me!Date_Assigned) Then Exit Sub
  3.     Me!Turnaround = Me!Date_Assigned + _
  4.                     CountDays(Me!Date_Assigned, 5)
  5. End Sub
Feb 1 '07 #7
I tried the code above exactly as posted but the turnaround box does not update when a date is entered in the Date_Assigned box and the form is refreshed. Thanks for your help
Feb 2 '07 #8
NeoPa
32,556 Expert Mod 16PB
Will have to look at this tomorrow. Sorry - I'm out tonight.
Expect rational response then ;)
Feb 2 '07 #9
Will have to look at this tomorrow. Sorry - I'm out tonight.
Expect rational response then ;)

Thank you very much for your help. Have a good night!
Feb 2 '07 #10
NeoPa
32,556 Expert Mod 16PB
I tried the code above exactly as posted but the turnaround box does not update when a date is entered in the Date_Assigned box and the form is refreshed. Thanks for your help
What do you mean by "...and the form is refreshed."?
This code should update the Turnaround control immediately the Date_Assigned control has a date entered.
Feb 4 '07 #11
What do you mean by "...and the form is refreshed."?
This code should update the Turnaround control immediately the Date_Assigned control has a date entered.
The date assigned control uses a calendar to assigned the date. I added a refresh data button see if this might help.
Feb 5 '07 #12
What do you mean by "...and the form is refreshed."?
This code should update the Turnaround control immediately the Date_Assigned control has a date entered.
The date_assigned control uses a calendar to assign the date. When I remove the calendar control the code works fine. How can I use the calendar and still get the code to populate the Turnaround control?
Feb 5 '07 #13
NeoPa
32,556 Expert Mod 16PB
The date assigned control uses a calendar to assigned the date. I added a refresh data button see if this might help.
You should understand that introducing something new into the mixture, without informing anyone, is likely to cause confusion. It's hard enough to think about what's happening your end without unnotified changes going on.

I need you to explain now, what happened without the refresh data button. I expect that it didn't work, but I need that expressed clearly rather than my trying to read between the lines.
Feb 5 '07 #14
NeoPa
32,556 Expert Mod 16PB
The date_assigned control uses a calendar to assign the date. When I remove the calendar control the code works fine. How can I use the calendar and still get the code to populate the Turnaround control?
Sorry, I didn't catch this post earlier (It's still not a good idea to play around with the situation until the earlier problem is resolved). When you say your first sentence above, what do you mean exactly? Does it still use the Date_Assigned control or is the Calendar control used with a different name?
Try to explain exactly what you did to implement the Calendar control into the system.
Feb 5 '07 #15
Sorry, I should have mentioned the calendar control from the onset. Is it possible to achieve the same functionality using the calendar control?
Feb 5 '07 #16
Sorry, I didn't catch this post earlier (It's still not a good idea to play around with the situation until the earlier problem is resolved). When you say your first sentence above, what do you mean exactly? Does it still use the Date_Assigned control or is the Calendar control used with a different name?
Try to explain exactly what you did to implement the Calendar control into the system.

This is how I impemented the calendar control that populates the Date_Assigned control.

Expand|Select|Wrap|Line Numbers
  1. Option Compare Database
  2. Option Explicit
  3. Dim Originator As ComboBox
  4.  
  5. Private Sub Calendar6_Click()
  6. Originator.Value = Calendar6.Value
  7. Originator.SetFocus
  8. Calendar6.Visible = False
  9. Set Originator = Nothing
  10. End Sub

Expand|Select|Wrap|Line Numbers
  1. Private Sub Date_Assigned_MouseDown(Button As Integer, Shift As Integer, X As Single, Y As Single)
  2. Set Originator = Date_Assigned
  3. Calendar6.Visible = True
  4. Calendar6.SetFocus
  5. If Not IsNull(Originator) Then
  6. Calendar6.Value = Originator.Value
  7. Else
  8. Calendar6.Value = Date
  9. End If
  10. End Sub
Feb 5 '07 #17
NeoPa
32,556 Expert Mod 16PB
I like your code. I've tweaked it a little for readability and brevity.
However, I couldn't find anything wrong with it except that I thought the Date_Assigned control was a TextBox rather than a ComboBox as defined in your code.
Expand|Select|Wrap|Line Numbers
  1. Option Compare Database
  2. Option Explicit
  3. Dim Originator As ComboBox
  4.  
  5. Private Sub Date_Assigned_AfterUpdate()
  6.     If IsNull(Me!Date_Assigned) Then Exit Sub
  7.     Me!Turnaround = Me!Date_Assigned + _
  8.                     CountDays(Me!Date_Assigned, 5)
  9. End Sub
  10.  
  11. Private Sub Date_Assigned_MouseDown(Button As Integer,
  12.                                     Shift As Integer,
  13.                                     X As Single,
  14.                                     Y As Single)
  15.     Set Originator = Date_Assigned
  16.     With Calendar6
  17.         .Visible = True
  18.         Call .SetFocus
  19.         .Value = Nz(Originator,Date)
  20.     End With
  21. End Sub
  22.  
  23. Private Sub Calendar6_Click()
  24.     Originator.Value = Calendar6.Value
  25.     Originator.SetFocus
  26.     Calendar6.Visible = False
  27.     Set Originator = Nothing
  28. End Sub
  29.  
  30. Private Function CountDays(Date_Assigned As Date, _
  31.                           DaysToComplete As Integer) As Integer
  32. 'Function to return no of days forward to match no of working days passed
  33. Dim tmpDate As Date
  34. Dim i As Integer
  35.     CountDays = DaysToComplete
  36.     tmpDate = Date_Assigned
  37.  
  38.     For i = 1 To DaysToComplete
  39.         If Weekday(tmpDate, vbSaturday) < 3 Then
  40.             CountDays = CountDays + 1
  41.             i = i - 1
  42.         End If
  43.         tmpDate = tmpDate + 1
  44.     Next i
  45. End Function
Let me know if the ComboBox thing is the problem.
Feb 5 '07 #18
NeoPa
32,556 Expert Mod 16PB
If that isn't your problem try putting a breakpoint on the line :
Expand|Select|Wrap|Line Numbers
  1. If IsNull(Me!Date_Assigned) Then Exit Sub
This should be triggered when the field is updated. Let me know what happens here when you try to select a date from Calendar6.
Feb 5 '07 #19
If that isn't your problem try putting a breakpoint on the line :
Expand|Select|Wrap|Line Numbers
  1. If IsNull(Me!Date_Assigned) Then Exit Sub
This should be triggered when the field is updated. Let me know what happens here when you try to select a date from Calendar6.

No, that was not the problem. The control was Date_Assigned is defined as a Combo Box so when the user tries to open the list the calendar opens instead and the user is able to select a date using the calendar.

I still can get the turnaround control to pupulate when I select a date from the calendar.
Feb 5 '07 #20
NeoPa
32,556 Expert Mod 16PB
If that isn't your problem try putting a breakpoint on the line :
Expand|Select|Wrap|Line Numbers
  1. If IsNull(Me!Date_Assigned) Then Exit Sub
This should be triggered when the field is updated. Let me know what happens here when you try to select a date from Calendar6.
See post #19 (copied here) for the next step.
Feb 5 '07 #21
See post #19 (copied here) for the next step.

I added a break poin in the suggested line but still the turnaround is not populated after the the Date_assigned Combo box is updated using the calendar.
Feb 5 '07 #22
NeoPa
32,556 Expert Mod 16PB
Is the breakpoint in the code triggered?
Feb 5 '07 #23
Is the breakpoint in the code triggered?
No, the breakpoint in the code is not triggered
Feb 5 '07 #24
NeoPa
32,556 Expert Mod 16PB
In that case (which does surprise me), what do you get if you change the first line of Calendar6_Click() from Originator.Value = Calendar6.Value to Me!Date_Assigned = Me!Calendar6?
This is just a test. Assigning a value to a control is supposed to trigger the AfterUpdate event procedure. I want to see if Access has been confused by referring to it indirectly via an object variable (Originator).
Feb 5 '07 #25
MMcCarthy
14,534 Expert Mod 8TB
In that case (which does surprise me), what do you get if you change the first line of Calendar6_Click() from Originator.Value = Calendar6.Value to Me!Date_Assigned = Me!Calendar6?
This is just a test. Assigning a value to a control is supposed to trigger the AfterUpdate event procedure. I want to see if Access has been confused by referring to it indirectly via an object variable (Originator).
If Date_Assigned is a combobox what is the row source of this control and is the Limit to List property set to Yes?
Feb 6 '07 #26
In that case (which does surprise me), what do you get if you change the first line of Calendar6_Click() from Originator.Value = Calendar6.Value to Me!Date_Assigned = Me!Calendar6?
This is just a test. Assigning a value to a control is supposed to trigger the AfterUpdate event procedure. I want to see if Access has been confused by referring to it indirectly via an object variable (Originator).

Not sure if this is what you meant? I changed the bolded line but to what you suggested but nothing happened.

Expand|Select|Wrap|Line Numbers
  1. Option Compare Database
  2. Option Explicit
  3. Dim Originator As ComboBox
  4.  
  5. Private Sub Date_Assigned_AfterUpdate()
  6.     If IsNull(Me!Date_Assigned) Then Exit Sub
  7.     Me!Turnaround = Me!Date_Assigned + _
  8.                     CountDays(Me!Date_Assigned, 5)
  9. End Sub
  10.  
  11. Private Sub Date_Assigned_MouseDown(Button As Integer, Shift As Integer, X As Single, Y As Single)
  12.     Set Originator = Date_Assigned
  13.     With Calendar6
  14.         .Visible = True
  15.         Call .SetFocus
  16.         .Value = Nz(Originator, Date)
  17.     End With
  18. End Sub
  19.  
  20. Private Sub Calendar6_Click()
  21.     Me!Date_Assigned = Me!Calendar6
  22.     Originator.SetFocus
  23.     Calendar6.Visible = False
  24.     Set Originator = Nothing
  25. End Sub
  26.  
  27. Private Function CountDays(Date_Assigned As Date, _
  28.                           DaysToComplete As Integer) As Integer
  29. 'Function to return no of days forward to match no of working days passed
  30. Dim tmpDate As Date
  31. Dim i As Integer
  32.     CountDays = DaysToComplete
  33.     tmpDate = Date_Assigned
  34.  
  35.     For i = 1 To DaysToComplete
  36.         If Weekday(tmpDate, vbSaturday) < 3 Then
  37.             CountDays = CountDays + 1
  38.             i = i - 1
  39.         End If
  40.         tmpDate = tmpDate + 1
  41.     Next i
  42. End Function
  43.  
  44. Private Sub Date_Fulfilled_MouseDown(Button As Integer, Shift As Integer, X As Single, Y As Single)
  45. Set Originator = Date_Fulfilled
  46. Calendar6.Visible = True
  47. Calendar6.SetFocus
  48. If Not IsNull(Originator) Then
  49. Calendar6.Value = Originator.Value
  50. Else
  51. Calendar6.Value = Date
  52. End If
  53. End Sub
  54.  
  55. Private Sub Date_Received_MouseDown(Button As Integer, Shift As Integer, X As Single, Y As Single)
  56. Set Originator = Date_Received
  57. Calendar6.Visible = True
  58. Calendar6.SetFocus
  59. If Not IsNull(Originator) Then
  60. Calendar6.Value = Originator.Value
  61. Else
  62. Calendar6.Value = Date
  63. End If
  64. End Sub
Feb 6 '07 #27
NeoPa
32,556 Expert Mod 16PB
You got that right.
But I don't understand why the Date_Assigned_AfterUpdate() procedure is not being activated :confused:
Can you try one last thing for me before we give up on doing it properly and bodge the code to effect the required result.
Can you put a breakpoint on the first line of the Date_Assigned_AfterUpdate() procedure (If IsNull(Me!Date_Assigned) Then Exit Sub).
Now try running through the test (with the current code for the moment) and tell us if that breakpoint is triggered (If so it will stop the code and highlight that line in yellow).
Does that make sense?
Feb 6 '07 #28
You got that right.
But I don't understand why the Date_Assigned_AfterUpdate() procedure is not being activated :confused:
Can you try one last thing for me before we give up on doing it properly and bodge the code to effect the required result.
Can you put a breakpoint on the first line of the Date_Assigned_AfterUpdate() procedure (If IsNull(Me!Date_Assigned) Then Exit Sub).
Now try running through the test (with the current code for the moment) and tell us if that breakpoint is triggered (If so it will stop the code and highlight that line in yellow).
Does that make sense?

I added the breakpoint at the point you indicated but nothing happens, the control opens the calendar and allows me to select a date which populates the Date_Received text box but does not populate the turnaround.
Feb 6 '07 #29
NeoPa
32,556 Expert Mod 16PB
The code below completely replaces the code you showed in post #27.
Try it out and see if it fixes your problems.
Expand|Select|Wrap|Line Numbers
  1. Option Compare Database
  2. Option Explicit
  3. Private Originator As ComboBox
  4.  
  5. Private Sub Calendar6_Click()
  6.     With Originator
  7.         .Value = Me!Calendar6
  8.         Call .SetFocus
  9.         Me!Calendar6.Visible = False
  10.         If .Name = "Date_Assigned" And Not IsNull(.Value) Then _
  11.             Me!Turnaround = .Value + CountDays(.Value, 5)
  12.     End With
  13.     Set Originator = Nothing
  14. End Sub
  15.  
  16. Private Sub Date_Assigned_MouseDown(Button As Integer, Shift As Integer, X As Single, Y As Single)
  17.     Call EnableCal(cboDate:=Me!Date_Assigned)
  18. End Sub
  19.  
  20. Private Sub Date_Fulfilled_MouseDown(Button As Integer, Shift As Integer, X As Single, Y As Single)
  21.     Call EnableCal(cboDate:=Me!Date_Fulfilled)
  22. End Sub
  23.  
  24. Private Sub Date_Received_MouseDown(Button As Integer, Shift As Integer, X As Single, Y As Single)
  25.     Call EnableCal(cboDate:=Me!Date_Received)
  26. End Sub
  27.  
  28. Private Sub EnableCal(cboDate As ComboBox)
  29.     Set Originator = cboDate
  30.     With Me!Calendar6
  31.         .Visible = True
  32.         Call .SetFocus
  33.         .Value = Nz(Originator, Date)
  34.     End With
  35. End Sub
  36.  
  37. 'Function to return no of days forward to match no of working days passed
  38. Private Function CountDays(ByVal StartDate As Date, _
  39.                            ByVal DaysToComplete As Integer) As Integer
  40.     Dim intX As Integer
  41.  
  42.     CountDays = DaysToComplete
  43.     For intX = 1 To DaysToComplete
  44.         If Weekday(StartDate, vbSaturday) < 3 Then
  45.             CountDays = CountDays + 1
  46.             intX = intX - 1
  47.         End If
  48.         StartDate = StartDate + 1
  49.     Next intX
  50. End Function
It appears from your testing that the AfterUpdate event of the Date_Assigned control does not get triggered simply if the item is updated, but only if it's updated via the form itself. This is completely different from how the similar events work in Excel.
Please let us know how you get on with this.
Feb 6 '07 #30

Sign in to post your reply or Sign up for a free account.

Similar topics

9
by: Larry Woods | last post by:
I have a site that works fine for days, then suddenly, I start getting ASP 0115 errors with an indication that session variables IN SEPARATE SESSIONS have disappeared! First, for background...
2
by: PK9 | last post by:
I have a loop where I need to calculate a series of dates based on: 1) a start date (DateTime variable) 2) a number of days (integer variable) I need to take the start date, then add the number...
5
by: BlackFireNova | last post by:
I need to write a report in which one part shows a count of how many total records fall within the working days (Monday - Friday) inside of a (prompted) given date range, in a particular...
0
by: Chris Millar | last post by:
I have a user control that i wish to extend to change the date when the user selects the numeric up down button. The code explains itself, hope someone can help. any ideas appreaciated.. ...
4
by: =?Utf-8?B?UGF1bA==?= | last post by:
Hi, I have a web application that I need to add 3 days to the Now day, but need to make sure that I skip weekends and holidays. For example if Now is friday, 3 days + now should be tuesday,...
11
by: lenygold via DBMonster.com | last post by:
Hi everybody! This query is supposed to count consecutive years from the current year without OLAP. Input Table: ID DateCol 1 02/01/2006 1 01/01/2006 1 01/01/2005
1
by: swethak | last post by:
Hi, I am desiging the calendar application for that purpose i used the below code. But it is for only displys calendar. And also i want to add the events to calendar. In that code displys the...
2
by: angi35 | last post by:
Hi, I'm working in Access 2000. I have a form with a series of date fields, showing the progress of a project from start to completion. There's a set of fields/controls for projected dates (when...
1
by: printline | last post by:
Hi' All I have an ordering formular where users can choose on how many working days they want thier order on. I skip saturday and sunday because they are not working days and this works fine. If...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
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
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
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...
0
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...
0
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,...

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.