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

New Record will NOT fire

I am having trouble with the new record property. When I attempt to
place the code under a command button that says the following:
''''CODE STARTS HERE''''
Private Sub Cause_Entry_Click()

Dim MyForm As Variant
Dim intnewrec As Integer

MyForm = Me.CurrentRecord

If MyForm = NewRecord Then

MsgBox "You're in a new record."

Else

MsgBox "You're NOTTTTT in a new record."

End If
''''CODE ENDS HERE''''

It always defaults to the "else" part of the statement, even when I
know i am entering a new record.

HELP
Thanks
Mike
Nov 13 '05 #1
7 1346
The form's NewRecord property is a true/false value.

Try:
If Me.NewRecord Then
MsgBox "Yep"
Else
MsgBox "Nah."
End If

--
Allen Browne - Microsoft MVP. Perth, Western Australia.
Tips for Access users - http://allenbrowne.com/tips.html
Reply to group, rather than allenbrowne at mvps dot org.

"Mike" <MU*@verizon.net> wrote in message
news:d5*************************@posting.google.co m...
I am having trouble with the new record property. When I attempt to
place the code under a command button that says the following:
''''CODE STARTS HERE''''
Private Sub Cause_Entry_Click()

Dim MyForm As Variant
Dim intnewrec As Integer

MyForm = Me.CurrentRecord

If MyForm = NewRecord Then

MsgBox "You're in a new record."

Else

MsgBox "You're NOTTTTT in a new record."

End If
''''CODE ENDS HERE''''

It always defaults to the "else" part of the statement, even when I
know i am entering a new record.

HELP
Thanks
Mike

Nov 13 '05 #2
I tried the suggestion from Mr. Browne and still it comes up as an old
record. This is really "stumping me", as I am entering a "new record"
each time I try the code (yours or mine).... HELP
MU*@verizon.net (Mike) wrote in message news:<d5*************************@posting.google.c om>...
I am having trouble with the new record property. When I attempt to
place the code under a command button that says the following:
''''CODE STARTS HERE''''
Private Sub Cause_Entry_Click()

Dim MyForm As Variant
Dim intnewrec As Integer

MyForm = Me.CurrentRecord

If MyForm = NewRecord Then

MsgBox "You're in a new record."

Else

MsgBox "You're NOTTTTT in a new record."

End If
''''CODE ENDS HERE''''

It always defaults to the "else" part of the statement, even when I
know i am entering a new record.

HELP
Thanks
Mike

Nov 13 '05 #3
"Allen Browne" <Al*********@SeeSig.Invalid> wrote in message news:<41***********************@per-qv1-newsreader-01.iinet.net.au>...
The form's NewRecord property is a true/false value.

Try:
If Me.NewRecord Then
MsgBox "Yep"
Else
MsgBox "Nah."
End If

--
Allen Browne - Microsoft MVP. Perth, Western Australia.
Tips for Access users - http://allenbrowne.com/tips.html
Reply to group, rather than allenbrowne at mvps dot org.

"Mike" <MU*@verizon.net> wrote in message
news:d5*************************@posting.google.co m...
I am having trouble with the new record property. When I attempt to
place the code under a command button that says the following:
''''CODE STARTS HERE''''
Private Sub Cause_Entry_Click()

Dim MyForm As Variant
Dim intnewrec As Integer

MyForm = Me.CurrentRecord

If MyForm = NewRecord Then

MsgBox "You're in a new record."

Else

MsgBox "You're NOTTTTT in a new record."

End If
''''CODE ENDS HERE''''

It always defaults to the "else" part of the statement, even when I
know i am entering a new record.

HELP
Thanks
Mike

I tried it and it still fires on the else area... What am I doing
wrong? Do you think it could be an error on where the command button
fires that this is linked to??
Nov 13 '05 #4
You must have some code that is moving to an old record, such as a requery?

--
Allen Browne - Microsoft MVP. Perth, Western Australia.
Tips for Access users - http://allenbrowne.com/tips.html
Reply to group, rather than allenbrowne at mvps dot org.

"Mike" <MU*@verizon.net> wrote in message
news:d5*************************@posting.google.co m...
"Allen Browne" <Al*********@SeeSig.Invalid> wrote in message
news:<41***********************@per-qv1-newsreader-01.iinet.net.au>...
The form's NewRecord property is a true/false value.

Try:
If Me.NewRecord Then
MsgBox "Yep"
Else
MsgBox "Nah."
End If
"Mike" <MU*@verizon.net> wrote in message
news:d5*************************@posting.google.co m...
>I am having trouble with the new record property. When I attempt to
> place the code under a command button that says the following:
>
>
> ''''CODE STARTS HERE''''
> Private Sub Cause_Entry_Click()
>
> Dim MyForm As Variant
> Dim intnewrec As Integer
>
> MyForm = Me.CurrentRecord
>
> If MyForm = NewRecord Then
>
> MsgBox "You're in a new record."
>
> Else
>
> MsgBox "You're NOTTTTT in a new record."
>
> End If
> ''''CODE ENDS HERE''''
>
> It always defaults to the "else" part of the statement, even when I
> know i am entering a new record.
>
> HELP
> Thanks
> Mike

I tried it and it still fires on the else area... What am I doing
wrong? Do you think it could be an error on where the command button
fires that this is linked to??

Nov 13 '05 #5
OK Thanks, I looked in the code that I have and cant find it, so here
it is. I really appreciate the help.

Mike
'''CODE STARTS HERE''''
Option Compare Database
Private strCaption1 As String
Private strCaption2 As String

Private Sub Command228_Click()
Call NotifyMe
End Sub

Private Sub district_NotInList(NewData As String, Response As Integer)
MsgBox "Please select a battalion from the list, or select 99 for
other", vbCritical, "Select Battalion"
End Sub
Private Sub Date_DblClick(Cancel As Integer)
Date = ShowMonthCalendar(mc, Nz(Me.Date, 1), , , , True)
End Sub
Private Sub district_AfterUpdate()
Dim COLDATE, ColYear
COLDATE = Me.Date
ColYear = Year(COLDATE)
Dim MyDate, ColWeekDay
ColWeekDay = Weekday(COLDATE)
date1 = ColYear
If ColWeekDay = "1" Then Me.dayOfWeek.Value = "Sunday"
If ColWeekDay = "2" Then Me.dayOfWeek.Value = "Monday"
If ColWeekDay = "3" Then Me.dayOfWeek.Value = "Tuesday"
If ColWeekDay = "4" Then Me.dayOfWeek.Value = "Wedensday"
If ColWeekDay = "5" Then Me.dayOfWeek.Value = "Thursday"
If ColWeekDay = "6" Then Me.dayOfWeek.Value = "Friday"
If ColWeekDay = "7" Then Me.dayOfWeek.Value = "Saturday"
'--------------------------------------------------------------------------
If Me.district = "Battalion 01" Then Me.Battalion = "01"
If Me.district = "Battalion 02" Then Me.Battalion = "02"
If Me.district = "Battalion 03" Then Me.Battalion = "03"
If Me.district = "Battalion 04" Then Me.Battalion = "04"
If Me.district = "Battalion 05" Then Me.Battalion = "05"
If Me.district = "Battalion 99" Then Me.Battalion = "99"
'--------------------------------------------------------------------------
Me.collisonID = [Battalion] & "." & [date1] & "." & [autonumber]
DoCmd.DoMenuItem acFormBar, acRecordsMenu, 5, , acMenuVer70
End Sub
Private Sub Form_Load()
Set mc = New clsMonthCal
dbuser = CurrentUser()
Dim intNewRecord As Integer
intNewRecord = Me.NewRecord

If intNewRecord = True Then
Me.ReportOriginator = dbuser
Me.Command229.Enabled = False

Else
Me.Command229.Enabled = True
End If
Me.Caption = Me.Caption & ", Current User = " & CurrentUser() & ",
Report Originator = " & [Report_Originator] & "."
DoCmd.Close acForm, "frmEntryMenu"
End Sub
'''*****HERES THE PROBLEM CHILD*****'''
Private Sub Cause_Entry_Click()
If Me.NewRecord Then

MsgBox "Yep Its New"
Else
MsgBox "Nah Its Old."
Call CheckCollision

stDocName = "frmCollisionCauses"

stlinkcriteria = "[collisionID]=" & "'" & Me![collisonID] & "'"

DoCmd.OpenForm stDocName, , , stlinkcriteria
If Me.driving_Task = "CT1 Starting-Leaving the station, scene or
parked" Then Forms!frmCollisionCauses!CT1.SetFocus
If Me.driving_Task = "CT2 In Motion-responding, returning, any
vehicle movement" Then Forms!frmCollisionCauses!CT2.SetFocus
If Me.driving_Task = "CT3 Intersection-Approaching, Proceeding
through, Leaving" Then Forms!frmCollisionCauses!CT3.SetFocus
If Me.driving_Task = "CT4 Arriving on Scene or Stopping" Then
Forms!frmCollisionCauses!CT4.SetFocus
If Me.driving_Task = "CT5 Backing" Then
Forms!frmCollisionCauses!CT5.SetFocus

End If

Exit_Cause_Entry_Click:
Exit Sub

Err_Cause_Entry_Click:
MsgBox Err.Description
Resume Exit_Cause_Entry_Click

End Sub
Private Sub Form_Open(Cancel As Integer)
Dim dbuser As Variant
Dim AuthUser As Variant
Dim Lookup As String
Dim Originator As Variant
UserName = "UserName = " & "'" & CurrentUser() & "'"
AuthUser = DLookup("[UserName]", "tblAuditTrailAccess", UserName)
Originator = DLookup("Report_Originator", "tblReport", Lookup)
dbuser = CurrentUser()

If dbuser = AuthUser Then

Me.AuditTrailFolder.Visible = True

ElseIf dbuser = Not AuthUser Then

Me.AuditTrailFolder.Visible = False

End If

End Sub
Private Sub Form_Unload(Cancel As Integer)
If Not mc Is Nothing Then
If mc.IsCalendar Then
Cancel = 1
Exit Sub
End If
'DoEvents
Set mc = Nothing
End If
End Sub
Private Sub Command199_Click()
On Error GoTo Err_Command199_Click
DoCmd.Close
DoCmd.OpenForm "frmEntryMenu"

Exit_Command199_Click:
Exit Sub

Err_Command199_Click:
MsgBox Err.Description
Resume Exit_Command199_Click

End Sub
Private Sub Command229_Click()
On Error GoTo Err_Command229_Click

Dim stDocName As String
Dim stlinkcriteria As String

stDocName = "frmCollisionPicsAll"

stlinkcriteria = "[CollisionID]=" & "'" & Me![collisonID] & "'"
DoCmd.OpenForm stDocName, , , stlinkcriteria

Exit_Command229_Click:
Exit Sub

Err_Command229_Click:
MsgBox Err.Description
Resume Exit_Command229_Click

End Sub

'''CODE ENDS HERE'''
"Allen Browne" <Al*********@SeeSig.Invalid> wrote in message news:<41***********************@per-qv1-newsreader-01.iinet.net.au>...
You must have some code that is moving to an old record, such as a requery?

--
Allen Browne - Microsoft MVP. Perth, Western Australia.
Tips for Access users - http://allenbrowne.com/tips.html
Reply to group, rather than allenbrowne at mvps dot org.

"Mike" <MU*@verizon.net> wrote in message
news:d5*************************@posting.google.co m...
"Allen Browne" <Al*********@SeeSig.Invalid> wrote in message
news:<41***********************@per-qv1-newsreader-01.iinet.net.au>...
The form's NewRecord property is a true/false value.

Try:
If Me.NewRecord Then
MsgBox "Yep"
Else
MsgBox "Nah."
End If
"Mike" <MU*@verizon.net> wrote in message
news:d5*************************@posting.google.co m...
>I am having trouble with the new record property. When I attempt to
> place the code under a command button that says the following:
>
>
> ''''CODE STARTS HERE''''
> Private Sub Cause_Entry_Click()
>
> Dim MyForm As Variant
> Dim intnewrec As Integer
>
> MyForm = Me.CurrentRecord
>
> If MyForm = NewRecord Then
>
> MsgBox "You're in a new record."
>
> Else
>
> MsgBox "You're NOTTTTT in a new record."
>
> End If
> ''''CODE ENDS HERE''''
>
> It always defaults to the "else" part of the statement, even when I
> know i am entering a new record.
>
> HELP
> Thanks
> Mike

I tried it and it still fires on the else area... What am I doing
wrong? Do you think it could be an error on where the command button
fires that this is linked to??

Nov 13 '05 #6
Mike, the way to debug this, is to remove code and get the basic thing
working.

Then start adding your code until the problem appears. At this point you
have pinned it down.

You might also try to avoid reversved words like Date for the names of your
controls.

Hope that helps you to pin down what you are doing.

--
Allen Browne - Microsoft MVP. Perth, Western Australia.
Tips for Access users - http://allenbrowne.com/tips.html
Reply to group, rather than allenbrowne at mvps dot org.

"Mike" <MU*@verizon.net> wrote in message
news:d5************************@posting.google.com ...
OK Thanks, I looked in the code that I have and cant find it, so here
it is. I really appreciate the help.

Mike
'''CODE STARTS HERE''''
Option Compare Database
Private strCaption1 As String
Private strCaption2 As String

Private Sub Command228_Click()
Call NotifyMe
End Sub

Private Sub district_NotInList(NewData As String, Response As Integer)
MsgBox "Please select a battalion from the list, or select 99 for
other", vbCritical, "Select Battalion"
End Sub
Private Sub Date_DblClick(Cancel As Integer)
Date = ShowMonthCalendar(mc, Nz(Me.Date, 1), , , , True)
End Sub
Private Sub district_AfterUpdate()
Dim COLDATE, ColYear
COLDATE = Me.Date
ColYear = Year(COLDATE)
Dim MyDate, ColWeekDay
ColWeekDay = Weekday(COLDATE)
date1 = ColYear
If ColWeekDay = "1" Then Me.dayOfWeek.Value = "Sunday"
If ColWeekDay = "2" Then Me.dayOfWeek.Value = "Monday"
If ColWeekDay = "3" Then Me.dayOfWeek.Value = "Tuesday"
If ColWeekDay = "4" Then Me.dayOfWeek.Value = "Wedensday"
If ColWeekDay = "5" Then Me.dayOfWeek.Value = "Thursday"
If ColWeekDay = "6" Then Me.dayOfWeek.Value = "Friday"
If ColWeekDay = "7" Then Me.dayOfWeek.Value = "Saturday"
'--------------------------------------------------------------------------
If Me.district = "Battalion 01" Then Me.Battalion = "01"
If Me.district = "Battalion 02" Then Me.Battalion = "02"
If Me.district = "Battalion 03" Then Me.Battalion = "03"
If Me.district = "Battalion 04" Then Me.Battalion = "04"
If Me.district = "Battalion 05" Then Me.Battalion = "05"
If Me.district = "Battalion 99" Then Me.Battalion = "99"
'--------------------------------------------------------------------------
Me.collisonID = [Battalion] & "." & [date1] & "." & [autonumber]
DoCmd.DoMenuItem acFormBar, acRecordsMenu, 5, , acMenuVer70
End Sub
Private Sub Form_Load()
Set mc = New clsMonthCal
dbuser = CurrentUser()
Dim intNewRecord As Integer
intNewRecord = Me.NewRecord

If intNewRecord = True Then
Me.ReportOriginator = dbuser
Me.Command229.Enabled = False

Else
Me.Command229.Enabled = True
End If
Me.Caption = Me.Caption & ", Current User = " & CurrentUser() & ",
Report Originator = " & [Report_Originator] & "."
DoCmd.Close acForm, "frmEntryMenu"
End Sub
'''*****HERES THE PROBLEM CHILD*****'''
Private Sub Cause_Entry_Click()
If Me.NewRecord Then

MsgBox "Yep Its New"
Else
MsgBox "Nah Its Old."
Call CheckCollision

stDocName = "frmCollisionCauses"

stlinkcriteria = "[collisionID]=" & "'" & Me![collisonID] & "'"

DoCmd.OpenForm stDocName, , , stlinkcriteria
If Me.driving_Task = "CT1 Starting-Leaving the station, scene or
parked" Then Forms!frmCollisionCauses!CT1.SetFocus
If Me.driving_Task = "CT2 In Motion-responding, returning, any
vehicle movement" Then Forms!frmCollisionCauses!CT2.SetFocus
If Me.driving_Task = "CT3 Intersection-Approaching, Proceeding
through, Leaving" Then Forms!frmCollisionCauses!CT3.SetFocus
If Me.driving_Task = "CT4 Arriving on Scene or Stopping" Then
Forms!frmCollisionCauses!CT4.SetFocus
If Me.driving_Task = "CT5 Backing" Then
Forms!frmCollisionCauses!CT5.SetFocus

End If

Exit_Cause_Entry_Click:
Exit Sub

Err_Cause_Entry_Click:
MsgBox Err.Description
Resume Exit_Cause_Entry_Click

End Sub
Private Sub Form_Open(Cancel As Integer)
Dim dbuser As Variant
Dim AuthUser As Variant
Dim Lookup As String
Dim Originator As Variant
UserName = "UserName = " & "'" & CurrentUser() & "'"
AuthUser = DLookup("[UserName]", "tblAuditTrailAccess", UserName)
Originator = DLookup("Report_Originator", "tblReport", Lookup)
dbuser = CurrentUser()

If dbuser = AuthUser Then

Me.AuditTrailFolder.Visible = True

ElseIf dbuser = Not AuthUser Then

Me.AuditTrailFolder.Visible = False

End If

End Sub
Private Sub Form_Unload(Cancel As Integer)
If Not mc Is Nothing Then
If mc.IsCalendar Then
Cancel = 1
Exit Sub
End If
'DoEvents
Set mc = Nothing
End If
End Sub
Private Sub Command199_Click()
On Error GoTo Err_Command199_Click
DoCmd.Close
DoCmd.OpenForm "frmEntryMenu"

Exit_Command199_Click:
Exit Sub

Err_Command199_Click:
MsgBox Err.Description
Resume Exit_Command199_Click

End Sub
Private Sub Command229_Click()
On Error GoTo Err_Command229_Click

Dim stDocName As String
Dim stlinkcriteria As String

stDocName = "frmCollisionPicsAll"

stlinkcriteria = "[CollisionID]=" & "'" & Me![collisonID] & "'"
DoCmd.OpenForm stDocName, , , stlinkcriteria

Exit_Command229_Click:
Exit Sub

Err_Command229_Click:
MsgBox Err.Description
Resume Exit_Command229_Click

End Sub

'''CODE ENDS HERE'''
"Allen Browne" <Al*********@SeeSig.Invalid> wrote in message
news:<41***********************@per-qv1-newsreader-01.iinet.net.au>...
You must have some code that is moving to an old record, such as a
requery?

--
Allen Browne - Microsoft MVP. Perth, Western Australia.
Tips for Access users - http://allenbrowne.com/tips.html
Reply to group, rather than allenbrowne at mvps dot org.

"Mike" <MU*@verizon.net> wrote in message
news:d5*************************@posting.google.co m...
> "Allen Browne" <Al*********@SeeSig.Invalid> wrote in message
> news:<41***********************@per-qv1-newsreader-01.iinet.net.au>...
>> The form's NewRecord property is a true/false value.
>>
>> Try:
>> If Me.NewRecord Then
>> MsgBox "Yep"
>> Else
>> MsgBox "Nah."
>> End If
>>
>>
>> "Mike" <MU*@verizon.net> wrote in message
>> news:d5*************************@posting.google.co m...
>> >I am having trouble with the new record property. When I attempt to
>> > place the code under a command button that says the following:
>> >
>> >
>> > ''''CODE STARTS HERE''''
>> > Private Sub Cause_Entry_Click()
>> >
>> > Dim MyForm As Variant
>> > Dim intnewrec As Integer
>> >
>> > MyForm = Me.CurrentRecord
>> >
>> > If MyForm = NewRecord Then
>> >
>> > MsgBox "You're in a new record."
>> >
>> > Else
>> >
>> > MsgBox "You're NOTTTTT in a new record."
>> >
>> > End If
>> > ''''CODE ENDS HERE''''
>> >
>> > It always defaults to the "else" part of the statement, even when I
>> > know i am entering a new record.
>> >
>> > HELP
>> > Thanks
>> > Mike
>
>
> I tried it and it still fires on the else area... What am I doing
> wrong? Do you think it could be an error on where the command button
> fires that this is linked to??

Nov 13 '05 #7
Bri
Mike,

I think I see where you are causing the problem. I have snipped you code
below to identify the parts that are important. The key thing here is
that if the sub district_AfterUpdate() runs before the sub
Cause_Entry_Click() then the DoCmd.DoMenuItem acFormBar, acRecordsMenu,
5, , acMenuVer70 saves the record and it is no longer a New Record.

Hope this helps,

Bri

Mike wrote:
OK Thanks, I looked in the code that I have and cant find it, so here
it is. I really appreciate the help.

Mike
'''CODE STARTS HERE'''' <snip> Private Sub district_AfterUpdate() <snip> DoCmd.DoMenuItem acFormBar, acRecordsMenu, 5, , acMenuVer70
End Sub
'''*****HERES THE PROBLEM CHILD*****'''
Private Sub Cause_Entry_Click()
If Me.NewRecord Then
MsgBox "Yep Its New"
Else
MsgBox "Nah Its Old."
End If <snip> End Sub


Nov 13 '05 #8

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

Similar topics

4
by: Tim Marshall | last post by:
This is an embarrassing question to which I should know the answer, but I am not 100% sure of myself. My applications, whether they are Jet or Oracle usually deal with reporting on existing apps...
3
by: fred14214 | last post by:
Dear Group: I have built and customized a form using the wizard to put command buttons that will move to the NEXT record or PREVIOUS record. This works, but it needs some refinement. ...
5
by: Mary Litten | last post by:
Hi - (This is my very first post) I have gotten to this point of registering to post because I have been spinning my wheels so long, I believe I am all caught up in the weeds. (and mud) I have...
6
by: DebbieG | last post by:
I have created a database for a client and was told that it was to be a one-user database. Well, you know the next statement ... now they want 3 people to be able to use the database. (FYI, I...
17
by: perryche | last post by:
I have 5records, e.g. Rc1, Rc2, Rc3..., when user open up a form, I want it to open to a particular record (say Rc3) then when user chooses the Record Selector , it will go to Rc2 and , it will go...
12
by: swingingming | last post by:
Hi, in the NorthWind sample database, when clicking on the next navigation button on the new order record with nothing on the subform (order details), we got an order with nothing ordered. How can...
27
by: Kim Webb | last post by:
I have a field on a form for project number. I basically want it to be the next available number (ie 06010 then 06011 etc). In the form I create a text box and under control source I put: =!=...
4
by: Jamey Shuemaker | last post by:
Howdy, Saw a couple threads from the past few years on this topic, but didn't really find any solutions. Here's one I found:...
8
by: Jeff | last post by:
A client wants a press of the Enter key in a field on a continuous form to grab the value of that field from the previous record. But if they have typed a value and then hit Enter it shouldn't. ...
1
nev
by: nev | last post by:
Good day to all! I was trying to search the internet about this problem but I still can't seem to stumble upon an answer. I am using a BindingSource on my program and everything is ok except that...
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...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
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
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
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.