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

Problem cycling through records on a form

12
Hi,

I have a simple table and a form associated with it for data entry. I wanted to allow users to be able to open a specific record on the form for data entry. I therefore created a separate form with a control for choosing record ID's. After choosing a record ID users are taken directly to that record on the main form.

This is the problem: Once users are at their chosen record on the main form, I want them to be able to cycle through records on either side of the record ID they have chosen. I am unable to do this. I tried to use the wizard to create the record navigation buttons for "next record" and "previous record" but that dosen't work. Is there code I can write for custom buttons to cycle through records based on the record ID?

Any help will be appreciated!

- A
Jul 2 '07 #1
23 3173
puppydogbuddy
1,923 Expert 1GB
Hi,

I have a simple table and a form associated with it for data entry. I wanted to allow users to be able to open a specific record on the form for data entry. I therefore created a separate form with a control for choosing record ID's. After choosing a record ID users are taken directly to that record on the main form.

This is the problem: Once users are at their chosen record on the main form, I want them to be able to cycle through records on either side of the record ID they have chosen. I am unable to do this. I tried to use the wizard to create the record navigation buttons for "next record" and "previous record" but that dosen't work. Is there code I can write for custom buttons to cycle through records based on the record ID?

Any help will be appreciated!

- A
Before doing anything else, place your main form in design view, invoke the property sheet, and set the following 2 properties:

Navigation= Yes
Cycle = All records
Jul 2 '07 #2
buzz25
12
Before doing anything else, place your main form in design view, invoke the property sheet, and set the following 2 properties:

Navigation= Yes
Cycle = All records

I tried that. Navigation buttons are enabled and Cycle = All records. That works when I open the main form directly. However when I use my second form to choose a record ID and goto the main form that way; it shows only one record and I can't cycle through the records.

- A
Jul 2 '07 #3
puppydogbuddy
1,923 Expert 1GB
I tried that. Navigation buttons are enabled and Cycle = All records. That works when I open the main form directly. However when I use my second form to choose a record ID and goto the main form that way; it shows only one record and I can't cycle through the records.

- A
Ok, it sounds like you apply a filter when displaying a record on the main form. If that is the case, either the filter needs to be turned off, or you need to use a method that does not use a filter to display the record in your main form.

It would be helpful if you would post the code you use to display the selected record in the main form, and also the record source (if any) for your main form.
Jul 2 '07 #4
buzz25
12
Ok, it sounds like you apply a filter when displaying a record on the main form. If that is the case, either the filter needs to be turned off, or you need to use a method that does not use a filter to display the record in your main form.

It would be helpful if you would post the code you use to display the selected record in the main form, and also the record source (if any) for your main form.
Hi Thanks for the reply. I have a filter on the main form. My second form is a "welcome" page where I have a combox where users select records by "name" or "record ID". The "on update" property of this combo box has the following code in the event procedure. In the code below, "Master" is the name of my table linked to the main form and "Subid" refers to the "record ID"

Private Sub Combo2_AfterUpdate()
On Error GoTo HandleError
If IsNull(Me.Combo2) Then GoTo ExitHere
DoCmd.OpenForm "Master", , , "[Subid]=" & Me.Combo2
ExitHere:
Exit Sub
HandleError:
MsgBox ("Error: " & Err.Number & " " & Err.Description)
Resume ExitHere
End Sub

The main form has the following properties
Record Source = "Master"
Filter = [Subid]

Thanks so much for your time and help on this.

-A
Jul 2 '07 #5
puppydogbuddy
1,923 Expert 1GB
Hi Thanks for the reply. I have a filter on the main form. My second form is a "welcome" page where I have a combox where users select records by "name" or "record ID". The "on update" property of this combo box has the following code in the event procedure. In the code below, "Master" is the name of my table linked to the main form and "Subid" refers to the "record ID"

Private Sub Combo2_AfterUpdate()
On Error GoTo HandleError
If IsNull(Me.Combo2) Then GoTo ExitHere
DoCmd.OpenForm "Master", , , "[Subid]=" & Me.Combo2
ExitHere:
Exit Sub
HandleError:
MsgBox ("Error: " & Err.Number & " " & Err.Description)
Resume ExitHere
End Sub

The main form has the following properties
Record Source = "Master"
Filter = [Subid]

Thanks so much for your time and help on this.

-A

Yup, you are setting a filter with your openForm statement.....and the filter is limiting the records to the filter. An easy way to get around this is to not use the filter or where arguments of the OpenForm. Instead, Find the record in the RecordsetClone of the form after you open it as shown below:

Expand|Select|Wrap|Line Numbers
  1. Private Sub Combo2_AfterUpdate()
  2. On Error GoTo HandleError
  3.  
  4. Dim strWhere As String
  5. Dim rs As DAO.Recordset
  6. strWhere = "[Subid]=" & Me.Combo2
  7.  
  8. If IsNull(Me.Combo2) Then
  9.     GoTo ExitHere
  10. End If
  11. DoCmd.OpenForm "Master"
  12. With Forms!Master
  13.       Set rs = .RecordsetClone
  14.        rs.FindFirst strWhere
  15.        If rs.NoMatch Then
  16.              MsgBox "Not found"
  17.        Else
  18. .            Bookmark = rs.Bookmark
  19.        End If
  20. End With
  21. Set rs= Nothing
  22. ExitHere:
  23.     Exit Sub
  24. HandleError:
  25.     MsgBox ("Error: " & Err.Number & " " & Err.Description)
  26.     Resume ExitHere
  27. End Sub
  28.  
Jul 2 '07 #6
buzz25
12
Yup, you are setting a filter with your openForm statement.....and the filter is limiting the records to the filter. An easy way to get around this is to not use the filter or where arguments of the OpenForm. Instead, Find the record in the RecordsetClone of the form after you open it as shown below:

Expand|Select|Wrap|Line Numbers
  1. Private Sub Combo2_AfterUpdate()
  2. On Error GoTo HandleError
  3.  
  4. Dim strWhere As String
  5. Dim rs As DAO.Recordset
  6. strWhere = "[Subid]=" & Me.Combo2
  7.  
  8. If IsNull(Me.Combo2) Then
  9.     GoTo ExitHere
  10. End If
  11. DoCmd.OpenForm "Master"
  12. With Forms!Master
  13.       Set rs = .RecordsetClone
  14.        rs.FindFirst strWhere
  15.        If rs.NoMatch Then
  16.              MsgBox "Not found"
  17.        Else
  18. .            Bookmark = rs.Bookmark
  19.        End If
  20. End With
  21. Set rs= Nothing
  22. ExitHere:
  23.     Exit Sub
  24. HandleError:
  25.     MsgBox ("Error: " & Err.Number & " " & Err.Description)
  26.     Resume ExitHere
  27. End Sub
  28.  


Thanks for the tip. I changed the "AfterUpdate" property of my combobox to the code you suggested. Now when I pick a record now from the combobox I get the following run time error: "error 2445: you have entered an expression that has an invalid reference to the property bookmark"

any clues?
Jul 3 '07 #7
puppydogbuddy
1,923 Expert 1GB
Thanks for the tip. I changed the "AfterUpdate" property of my combobox to the code you suggested. Now when I pick a record now from the combobox I get the following run time error: "error 2445: you have entered an expression that has an invalid reference to the property bookmark"

any clues?
Yes, combo2 is not on the main form, so the following reference using me is incorrect.

Change this:
strWhere = "[Subid]=" & Me.Combo2

To this:
strWhere = "[Subid]=" & Forms!YourForm2!Combo2

Replace yourForm2 with the actual form name in your app
Jul 3 '07 #8
buzz25
12
Yes, combo2 is not on the main form, so the following reference using me is incorrect.

Change this:
strWhere = "[Subid]=" & Me.Combo2

To this:
strWhere = "[Subid]=" & Forms!YourForm2!Combo2

Replace yourForm2 with the actual form name in your app

Still getting the same error :(

this is the code for "AfterUpdate" property of combobox "Combo2" on form "WelcomePage"
The main form is called "Master"

Private Sub Combo2_AfterUpdate()
On Error GoTo HandleError
Dim strWhere As String
Dim rs As DAO.Recordset
strWhere = "[Subid]=" & Forms!WelcomePage!Combo2
If IsNull(Forms!WelcomePage!Combo2) Then
GoTo ExitHere
End If
DoCmd.OpenForm "Master"
With Forms!Master
Set rs = .RecordsetClone
rs.FindFirst strWhere
If rs.NoMatch Then
MsgBox "Not found"
Else
Bookmark = rs.Bookmark
End If
End With
Set rs = Nothing
ExitHere:
Exit Sub
HandleError:
MsgBox ("Error: " & Err.Number & " " & Err.Description)
Resume ExitHere
End Sub


Do i need to do anything with the "OnOpen" property of the main form?
Jul 3 '07 #9
puppydogbuddy
1,923 Expert 1GB
Still getting the same error :(

this is the code for "AfterUpdate" property of combobox "Combo2" on form "WelcomePage"
The main form is called "Master"

Private Sub Combo2_AfterUpdate()
On Error GoTo HandleError
Dim strWhere As String
Dim rs As DAO.Recordset
strWhere = "[Subid]=" & Forms!WelcomePage!Combo2
If IsNull(Forms!WelcomePage!Combo2) Then
GoTo ExitHere
End If
DoCmd.OpenForm "Master"
With Forms!Master
Set rs = .RecordsetClone
rs.FindFirst strWhere
If rs.NoMatch Then
MsgBox "Not found"
Else
Bookmark = rs.Bookmark
End If
End With
Set rs = Nothing
ExitHere:
Exit Sub
HandleError:
MsgBox ("Error: " & Err.Number & " " & Err.Description)
Resume ExitHere
End Sub


Do i need to do anything with the "OnOpen" property of the main form?
Not that I can think of off the top of my head...except, maybe: the WelcomePage does have to remain open (can be invisible) until the Find is done. If you are closing the Welcome page in the open event of main, then make invisible instead, or put the code to close at the end of the afterupdate code. Tell me what is happening.

Well, try changing this:
strWhere = "[Subid]=" & Forms!WelcomePage!Combo2

To:
strWhere = "[Subid]=" & Forms!WelcomePage!Combo2.Value
Jul 3 '07 #10
buzz25
12
Not that I can think of off the top of my head...except, maybe: the WelcomePage does have to remain open (can be invisible) until the Find is done. If you are closing the Welcome page in the open event of main, then make invisible instead, or put the code to close at the end of the afterupdate code. Tell me what is happening.

Well, try changing this:
strWhere = "[Subid]=" & Forms!WelcomePage!Combo2

To:
strWhere = "[Subid]=" & Forms!WelcomePage!Combo2.Value

The form "WelcomePage" stays open throughout. I removed the filter from the main form "Master". All the event properties on the main from are blank except the "OnCurrent" property where I had written some code to show/hide certain fields. None of these are dependent to the primary key "Subid" though.
Adding ".Value" still gives the same error. Help!
Jul 3 '07 #11
puppydogbuddy
1,923 Expert 1GB
Ok Buzz,
I am going to need you to debug by following these steps:

Put the word STOP in at the top of (the line before) your AfterUpdate procedure. Then start your application as you normally do. When the code executes, it will literally open the VBA window up and highlight the line that "Stop" is on. From there, you can "step" through the code one line at a time, using the <F8> key. As you pause on each line, move your cursor and hover over your variables (like strWhere) and values, Access will pop-up values in yellow baloon boxes. You can check your code in this way to make sure that everything is working as it should. Also, while you are stepping thru the code, note if the code is executing properly. Then, tell me what happens.
Jul 3 '07 #12
puppydogbuddy
1,923 Expert 1GB
Also, just to make sure. The syntax you are using for the find is to find a numeric string:

strWhere = "[Subid]=" & Forms!WelcomePage!Combo2.Value

If [Subid] is a text field, the syntax should be as follows:
strWhere = "[Subid]= '" & Forms!WelcomePage!Combo2.Value & "'"
Jul 3 '07 #13
buzz25
12
Ok Buzz,
I am going to need you to debug by following these steps:

Put the word STOP in at the top of (the line before) your AfterUpdate procedure. Then start your application as you normally do. When the code executes, it will literally open the VBA window up and highlight the line that "Stop" is on. From there, you can "step" through the code one line at a time, using the <F8> key. As you pause on each line, move your cursor and hover over your variables (like strWhere) and values, Access will pop-up values in yellow baloon boxes. You can check your code in this way to make sure that everything is working as it should. Also, while you are stepping thru the code, note if the code is executing properly. Then, tell me what happens.
Hi, thanks for the advice. I did as you asked. I am pasting the steps of the code as they were executed one line at a time.

Steps executed in debug mode:

Private Sub Combo2_AfterUpdate()
On Error GoTo HandleError
strWhere = "[Subid]=" & Forms!WelcomePage!Combo2.Value
If IsNull(Forms!WelcomePage!Combo2.Value) Then
End If
DoCmd.OpenForm "Master"

(Here it executes code I wrote for a subform in the main form to limit users from entering only 3 enteries)

Private Sub Form_Current()
If Me.NewRecord Then
If Me.RecordsetClone.RecordCount > 2 Then
MsgBox "Only three entries allowed."
Me.Recordset.MoveFirst
End If
End If

End Sub

(It executes the above code again)

Private Sub Form_Current()
If Me.NewRecord Then
If Me.RecordsetClone.RecordCount > 2 Then
MsgBox "Only three entries allowed."
Me.Recordset.MoveFirst
End If
End If
End Sub

(Here it exectues code for showing/hiding certain feilds in the main form)

Private Sub Form_Current()
On Error GoTo HandleError


If Me.scrbpcheck = False Then
Me.scrdatebp1.Visible = True

Me.scrdatebp1.Enabled = True

Else
Me.scrdatebp1.Visible = False

Me.scrdatebp1.Enabled = False

End If
If Me.screlig = False Then
Me.screligtxt.Visible = True

Me.screligtxt.Enabled = True

Else
Me.screligtxt.Visible = False

Me.screligtxt.Enabled = False

End If


ExitHere:
Exit Sub
HandleError:
MsgBox ("Error: " & Err.Number & " " & Err.Description)
Resume ExitHere
End Sub

(Now it goes back to the code for the combobox)

With Forms!Master
Set rs = .RecordsetClone
rs.FindFirst strWhere
If rs.NoMatch Then
Else
Bookmark = rs.Bookmark
MsgBox ("Error: " & Err.Number & " " & Err.Description)

(At this point I see the error message)
Jul 3 '07 #14
buzz25
12
Hi, I just wanted to clarify that the code for the "Current" properties of the main form and subform that I pasted above is the entire code, not just the steps that were executed.

For the combobox code I only pasted the steps that were executed.

Sorry if thats confusing
Jul 3 '07 #15
puppydogbuddy
1,923 Expert 1GB
Buzz,
One step you forgot to do was put your mouse cursor over the variables and obtain the values they are showing:

With Forms!Master
Set rs = .RecordsetClone
rs.FindFirst strWhere <<<<<<<put your cursor on strWhere and tell me what value strWhere is showing and how does it relate to the selection you made from combo2.......
Jul 3 '07 #16
buzz25
12
Buzz,
One step you forgot to do was put your mouse cursor over the variables and obtain the values they are showing:

With Forms!Master
Set rs = .RecordsetClone
rs.FindFirst strWhere <<<<<<<put your cursor on strWhere and tell me what value strWhere is showing and how does it relate to the selection you made from combo2.......

sorry about that.

strWhere = "[Subid] =1005"
rs.NoMatch = False
Bookmark = <You entered an expression that has an invalid reference to the property bookmark>
Jul 3 '07 #17
puppydogbuddy
1,923 Expert 1GB
Ok Buzz,
I think there is a problem with not being on the right form when the Find is done, perhaps because of the Current event code. We should be able to fix it by making sure focus is set on a control in the main form.

let's make a change to the following code, and try it:
Forms!Master!SubID.SetFocus ',,,,to make sure we are on the right form
With Forms!Master
Set rs = .RecordsetClone
rs.FindFirst strWhere


Hopefully, that will do it. If not, let me know and I will get back to you later after I return from a client visit.
Jul 3 '07 #18
buzz25
12
Ok Buzz,
I think there is a problem with not being on the right form when the Find is done, perhaps because of the Current event code. We should be able to fix it by making sure focus is set on a control in the main form.

let's make a change to the following code, and try it:
Forms!Master!SubID.SetFocus ',,,,to make sure we are on the right form
With Forms!Master
Set rs = .RecordsetClone
rs.FindFirst strWhere


Hopefully, that will do it. If not, let me know and I will get back to you later after I return from a client visit.

nope still gives same error at the same place. sorry this is being such a pain.
Jul 3 '07 #19
puppydogbuddy
1,923 Expert 1GB
Buzz,
From your prior debugging, you got the following results:

strWhere = "[Subid] =1005"
rs.NoMatch = False
Bookmark = <You entered an expression that has an invalid reference to the property bookmark>


This tells us that strWhere had the correct numeric string and that rs.NoMatch was false, indicating that a match was found. The only problem is that the bookmark we are trying to set is incorrect......that means that at the time created the clone, the main form's record source was not updated so that it would be in synch with combo2. Consquently, I believe we need to requery the main form's recordset so that it in insynch with Combo2 as shown.

Expand|Select|Wrap|Line Numbers
  1. Private Sub Combo2_AfterUpdate()
  2. On Error GoTo HandleError
  3.  
  4. Dim strWhere As String
  5. Dim rs As DAO.Recordset
  6. strWhere = "[Subid]=" & Forms!WelcomePage!Combo2.Value
  7.  
  8. If IsNull(Forms!WelcomePage!Combo2) Then
  9.       GoTo ExitHere
  10. End If
  11.  
  12. DoCmd.OpenForm "Master"
  13. Me.Requery           '<<<<<<<< synch Master form to value in combo2
  14. With Forms!Master
  15.       Set rs = .RecordsetClone         '<<<<clone the form's recordset
  16.       rs.FindFirst strWhere
  17.       If rs.NoMatch Then
  18.            MsgBox "Not found"
  19.      Else
  20.           Bookmark = rs.Bookmark        
  21.      End If
  22. End With
  23. Set rs = Nothing
  24.  
  25. ExitHere:
  26.       Exit Sub
  27.  
  28. HandleError:
  29.      MsgBox ("Error: " & Err.Number & " " & Err.Description)
  30.      Resume ExitHere
  31. End Sub
  32.  


Let me know what happens now.
Jul 3 '07 #20
buzz25
12
Buzz,
From your prior debugging, you got the following results:

strWhere = "[Subid] =1005"
rs.NoMatch = False
Bookmark = <You entered an expression that has an invalid reference to the property bookmark>


This tells us that strWhere had the correct numeric string and that rs.NoMatch was false, indicating that a match was found. The only problem is that the bookmark we are trying to set is incorrect......that means that at the time created the clone, the main form's record source was not updated so that it would be in synch with combo2. Consquently, I believe we need to requery the main form's recordset so that it in insynch with Combo2 as shown.

Expand|Select|Wrap|Line Numbers
  1. Private Sub Combo2_AfterUpdate()
  2. On Error GoTo HandleError
  3.  
  4. Dim strWhere As String
  5. Dim rs As DAO.Recordset
  6. strWhere = "[Subid]=" & Forms!WelcomePage!Combo2.Value
  7.  
  8. If IsNull(Forms!WelcomePage!Combo2) Then
  9.       GoTo ExitHere
  10. End If
  11.  
  12. DoCmd.OpenForm "Master"
  13. Me.Requery           '<<<<<<<< synch Master form to value in combo2
  14. With Forms!Master
  15.       Set rs = .RecordsetClone         '<<<<clone the form's recordset
  16.       rs.FindFirst strWhere
  17.       If rs.NoMatch Then
  18.            MsgBox "Not found"
  19.      Else
  20.           Bookmark = rs.Bookmark        
  21.      End If
  22. End With
  23. Set rs = Nothing
  24.  
  25. ExitHere:
  26.       Exit Sub
  27.  
  28. HandleError:
  29.      MsgBox ("Error: " & Err.Number & " " & Err.Description)
  30.      Resume ExitHere
  31. End Sub
  32.  


Let me know what happens now.

Hi,
Sorry for the delay in replying. I'm still getting the same error :(( at the same place. Also when I go back to the WecolmePage and pick another record I get a the MsgBox "Not Founnd" error.
Jul 5 '07 #21
puppydogbuddy
1,923 Expert 1GB
Hi,
Sorry for the delay in replying. I'm still getting the same error :(( at the same place. Also when I go back to the WecolmePage and pick another record I get a the MsgBox "Not Founnd" error.
Hmm....Now I am curious. Could you email me a sanitized version of your application (all sensitive info removed) so that I can look at it? My email address is with the VCard in my profile. Just download my vCard. Thanks.
Jul 5 '07 #22
buzz25
12
Hmm....Now I am curious. Could you email me a sanitized version of your application (all sensitive info removed) so that I can look at it? My email address is with the VCard in my profile. Just download my vCard. Thanks.

Hi,

So I figured out the problem! It was a missing "." before "Bookmark". Thank god. I was really at my wits end! The app works fine now with the very first code you had sent and allows me to cycle through records in the main form. Thanks so much for your help! Sorry that a single "." caused so much trouble!

Much appreciate your time! :)
Jul 5 '07 #23
puppydogbuddy
1,923 Expert 1GB
Hi,

So I figured out the problem! It was a missing "." before "Bookmark". Thank god. I was really at my wits end! The app works fine now with the very first code you had sent and allows me to cycle through records in the main form. Thanks so much for your help! Sorry that a single "." caused so much trouble!

Much appreciate your time! :)

Buzz,
Glad you got it resolved. Thanks for the feedback. So, for the record the code posted on July 2nd, 2007 05:52 PM #6 is the correct solution, except that Bookmark had to be changed to .Bookmark on line #18.
Jul 5 '07 #24

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

Similar topics

0
by: Akinia | last post by:
Hi every body I've got a little problem with my form ("frm_Company"). It is divided in two parts: - first one is filled with some text fields over the company. - second one is filled with a tab...
5
by: -:= Cactus | last post by:
Hi! I've made a form for dataentry in a simple table. However when there are records in that table and I open the form it only displays the new (blank) record. The total number of records is 1,...
6
by: jstaggs39 | last post by:
I want to create a Dcount and an If...Then...Else statement to count the number of records in a table based on the date that is entered to run the form. The If....Else statment comes in because if...
3
by: Jarek Mielcarek | last post by:
hi, I've problem to locate form on screen. I'd like to show modal form near a textbox after user click on it. here is the code: Private Sub myTextBox_MouseDown(ByVal sender As Object, ByVal e As...
1
by: deko | last post by:
When I open a bound form like this: DoCmd.OpenForm "frmNotes", , , , acFormAdd and the user runs the Spell Checker on a field in the form, the Spell Checker automatically cycles the form to...
0
by: emerrlly | last post by:
Dear all experts, Please help, I am facing the problem of unload form on VB.Net Me.Hide() Dim LoginMaintain As New LoginMaintain Dim frmLogin...
2
by: flash1600 | last post by:
I am using Access 97, yes I know Access 97 not by choice, I am adding a new record to a table with a Primary Key set with an auto number incremented by 1. I have the following code to find the...
1
by: Tyecom | last post by:
I'm having a problem getting the form I want to start first, to start first. I went to my program's property window and select which form I want to start first, but no matter which form I chose, it...
4
by: mabrynda | last post by:
Dear All, I have the following problem. In a form, I have several text boxes, from which I have to collect the numerical values introduced by the user. I can do that assigning a variable to each...
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: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
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: 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
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
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
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

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.