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

Cascading Combo Box Filtering

dgaletar
72 64KB
{Moderator Edit}
I have moved this hijack post to a new thread. Please do not take over an existing thread with your own questions as this is a punishable offense.
The original thread, from where this was originally taken, can be found at how to filter list of items in a combo box by selecting items in another combo.
{/Moderator Edit}
OK, I changed the FROM statement, and am still getting flagged. Now the ".RowSource" & the "FROM" lines have red dots, and the "WHERE" has a red dot with a yellow arrow.

Does that make sense???

Also, when I hover the mouse anywhere over those three lines, a message (sort of a help tip) appears below the mouse. It says: Me!Department=4.
Jan 31 '13 #1
66 3227
Seth Schrock
2,965 Expert 2GB
The code in your screenshot1 doesn't match the code you provided in post #4. Please post what you have using Copy/Paste (and please use code tags, the [CODE/] button) so that we can see exactly what you are working with.

What I'm seeing in the screenshot is that your SQL code selects [Combo26] from your table. My guess is that there isn't a field called Combo26, which would cause an error.
Jan 31 '13 #2
dgaletar
72 64KB
Sorry about that! I changed it after I found that [Combo26] was incorrect.

Here is the code as I am using it now:

Expand|Select|Wrap|Line Numbers
  1. Private Sub Combo14_Click()
  2.         With Me![CUA#]
  3.             If IsNull(Me!Department) Then
  4.                 .RowSource = ""
  5.             Else
  6.                 .RowSource = "SELECT [CUA#] " & _
  7.                              "FROM [VEHICLE DETAILS : Table] " & _
  8.                              "WHERE [CUA#]=" & Me!Department
  9.             End If
  10.             Call .Requery
  11.         End With
  12. End Sub
I also noticed that in Rabbits article he used this:

Expand|Select|Wrap|Line Numbers
  1. Private Sub Company_AfterUpdate()
instead of:
Expand|Select|Wrap|Line Numbers
  1. Private Sub Combo14_Click()
...with me changing "Company" to "Department".

But, when I tried to execute the command, the dropdown box didn't work.

Then, when I went back into the design mode, the [EventProcedure] was gone from the "OnClick" line. When I clicked on the three dots, it started from scratch, starting a new "Private Sub" with the line "Combo14_Click()" in it.
Jan 31 '13 #3
Seth Schrock
2,965 Expert 2GB
Just for troubleshooting purposes, lets assign your SQL code to a variable.
Expand|Select|Wrap|Line Numbers
  1. Dim strSql as String
  2. strSql = "SELECT [CUA#] " & _
  3. "FROM [VEHICLE DETAILS : Table] " & _
  4. "WHERE [CUA#]=" & Me!Department
  5.  
  6. Debug.Print strSql
  7. .RowSource = strSql
Replace your lines 6-8 with the above code, make sure your immediate window is open (Ctrl + G will open it if not), and then run your code. Copy and paste what is printed in the immediate window into a new query and run it. If the results are what you expect, then the problem isn't with your SQL and is somewhere else. I'll continue to look for that something else, but will wait to post any ideas until after you respond with the results.
Jan 31 '13 #4
dgaletar
72 64KB
I am soooo sorry Seth Schrock, but this is wayyyy over my head! I coppied and pasted the code that you listed into mine and now I have this:

Expand|Select|Wrap|Line Numbers
  1. Private Sub Department_AfterUpdate()
  2. 'Private Sub Combo14_Click()
  3.         With Me![CUA#]
  4.             If IsNull(Me!Department) Then
  5.                 .RowSource = ""
  6.             Else
  7. '                .RowSource = "SELECT [CUA#] " & _
  8. '                             "FROM [VEHICLE DETAILS : Table] " & _
  9. '                             "WHERE [CUA#]=" & Me!Department
  10.     Dim strSql As String
  11.     strSql = "SELECT [CUA#] " & _
  12.     "FROM [VEHICLE DETAILS : Table] " & _
  13.     "WHERE [CUA#]=" & Me!Department
  14.  
  15.     Debug.Print strSql
  16.     .RowSource = strSql
  17.  
  18.  
  19.             End If
  20.             Call .Requery
  21.         End With
  22. End Sub
  23.  
I then did Ctrl+G and opened the "immediate window".

"run your code"... I pressed the green arrow and a Macros box popped up asking me for the Macro name. I of course have not named any of my macros (as I do not know how to, or that I am supposed to), so I typed in "Department" as a name and hit create. It opened a new box labeled "Vehicles - Module1 (Code)". I copied and pasted all of the code into this new box and it looks like this:

Expand|Select|Wrap|Line Numbers
  1. Sub Department()
  2. Private Sub Department_AfterUpdate()
  3. 'Private Sub Combo14_Click()
  4.         With Me![CUA#]
  5.             If IsNull(Me!Department) Then
  6.                 .RowSource = ""
  7.             Else
  8. '                .RowSource = "SELECT [CUA#] " & _
  9. '                             "FROM [VEHICLE DETAILS : Table] " & _
  10. '                             "WHERE [CUA#]=" & Me!Department
  11.     Dim strSql As String
  12.     strSql = "SELECT [CUA#] " & _
  13.     "FROM [VEHICLE DETAILS : Table] " & _
  14.     "WHERE [CUA#]=" & Me!Department
  15.  
  16.     Debug.Print strSql
  17.     .RowSource = strSql
  18.  
  19.  
  20.             End If
  21.             Call .Requery
  22.         End With
  23. End Sub
  24.  
  25. End Sub
Now when I click on the green arrow I get an error message saying "Compile Error: Expected End Sub". If I remove that line from the code and click on the green arrow, I get another error message that says "Compile error - Invalid Use of Me keyword", and the "Private Sub Department_AfterUpdate()" turns yellow.

I feel like an idiot!!! What am I doing wrong?
Jan 31 '13 #5
Seth Schrock
2,965 Expert 2GB
Don't worry, you aren't an idiot. It wasn't that long ago that I was running into the same types of problems.

To run your code, you need to perform the action that triggers the event. In this case, you need to change the value selected in the Department combo box. That will trigger the Department's AfterUpdate event and run your code.
Jan 31 '13 #6
zmbd
5,501 Expert Mod 4TB
I've split this entire series out of the original thread they were posted because this was technically a Hijack. Honestly, I'm surprised it was allowed to continue.

However, at this point, the information and the help certainly merited its own thread instead of being deleted.

Dgaletar: Please in the future do not Hijack other people's threads, even though it is the same or close to the same topic. Instead, please post your own thread. It is usually permissible to provide a link(s) to the thread(s) that have a direct relationship to your question.
Jan 31 '13 #7
dgaletar
72 64KB
OK zmbd, thanks. It won't happen again.

And Seth Schrock, thanks for understanding!

OK, So I ran the code again with the immediate window open. First off, I had to change that first line from "Private Sub Company_AfterUpdate()" to "Private Sub Combo14_Click()" for it to run at all.

Then, when I did run it, I got an error popup - Microsoft Visual Basic - Runtime error '438': Object doesn't support this property or method.

But, in the immediate window I got this: SELECT [CUA#] FROM [VEHICLE DETAILS : Table] WHERE [CUA#]=4.
Jan 31 '13 #8
Seth Schrock
2,965 Expert 2GB
Okay. If you click Debug on the error message, which line does it highlight?

Take what you got in the immediate window, create a new query object and paste that into the SQL view and try to run it. Let me know the results.
Jan 31 '13 #9
dgaletar
72 64KB
Expand|Select|Wrap|Line Numbers
  1.     .RowSource = strSql
is highlighted.

Okay, never did this before so bear with me...

I clicked on "Create", and then "Query Design". I closed the "Show Table" box and clicked on the "SQL" view in the top left hand corner. I pasted that line of code and got this error message:

"The Microsoft Access database engine cannot find the input table or query 'VEHICLE DETAILS : Table"'. Make sure it exists and that it's name is spelled correctly."
Jan 31 '13 #10
dgaletar
72 64KB
You know, I'm kinda stuck on that immediate window code:
Expand|Select|Wrap|Line Numbers
  1. SELECT [CUA#] FROM [VEHICLE DETAILS : Table] WHERE [CUA#]=4
Why am I looking for the [CUA#] where the [CUA#]=4? I'm trying to populate a list of CUA#'s that belong to a specific department. Right?
Jan 31 '13 #11
Seth Schrock
2,965 Expert 2GB
Okay. Evidentally you can't use a variable as the row source. Didn't know that. Well, once we get the SQL fixed, we can just use the SQL for the row source instead of the variable.

So, per the error message, you just need to fix the name of the table in the query.
Jan 31 '13 #12
dgaletar
72 64KB
So, re-name the table? The actual table, or just in the query?
Jan 31 '13 #13
Seth Schrock
2,965 Expert 2GB
Did see your second post.

So you need to change your WHERE clause to be
Expand|Select|Wrap|Line Numbers
  1. "WHERE Department = " & Me.Department
All the immediate window does is shows you what the string looks like with the values from the controls and with it all concatenated together. It is what the SQL engine sees. So what you are seeing in the immediate window is what you typed in line 14 (post 7)
Jan 31 '13 #14
Seth Schrock
2,965 Expert 2GB
Just in the query. The error message is saying that there is no table named VEHICLE DETAILS : Table. My guess is that the table name is actually VEHICLE DETAILS, but this is only a guess since I don't have your database in front of me.
Jan 31 '13 #15
dgaletar
72 64KB
OK, so you are saying that I need to change the name of the table only in the query to "Me.Department"?
Jan 31 '13 #16
dgaletar
72 64KB
Oh!!! You are right! It is just named "VEHICLE DETAILS". Ooops!
Jan 31 '13 #17
dgaletar
72 64KB
OK, now we are cooking with gas! I changed the name in the query and ran it and it returned a value of 4.
Jan 31 '13 #18
dgaletar
72 64KB
OK, I also changed the table name in the Macros box. Got the same error with the same line highlighted:

Expand|Select|Wrap|Line Numbers
  1.     .RowSource = strSql
Jan 31 '13 #19
Seth Schrock
2,965 Expert 2GB
Me.Department is a reference to a control on the current form, not a table name.

Here is what the query needs:
SELECT - your fields names. Currently asking for the field CUA#
FROM - the name of the table where your selected fields can be found, currently listed as "VEHICLE DETAILS : Table" but this is wrong
WHERE - the criteria that specifies which records to be selected

You need a valid table name for the query to get records from. You need valid field names from the table you are querying to SELECT and to set criteria by in the WHERE clause. I don't know what tables names you have or the fields names so I can't tell you what exact text needs to go in the query.
Jan 31 '13 #20
Seth Schrock
2,965 Expert 2GB
Cross posted again :)

So did your query work and did it return the records you wanted?
Jan 31 '13 #21
dgaletar
72 64KB
Got it. Here's what I have listed in the SQL view of the query:

Expand|Select|Wrap|Line Numbers
  1. SELECT [CUA#] FROM [VEHICLE DETAILS] WHERE [CUA#]=[Department]
  2.  
...but when I run the query, it only returns an empty box labeled CUA#.

I imagine that I now need to connect the query to the form with the drop down box, right?
Jan 31 '13 #22
Seth Schrock
2,965 Expert 2GB
Instead of [Department], put 4 as this is what Me.Department equals.
Jan 31 '13 #23
dgaletar
72 64KB
Got it. Here's what I have listed in the SQL view of the query now:

Expand|Select|Wrap|Line Numbers
  1. SELECT [CUA#]
  2.       FROM [tblVEHICLE DETAILS]
  3.       WHERE [CUA#]=4
  4.  
...and when I run the query, it returns a 4 in the box labeled CUA#.
Jan 31 '13 #24
Seth Schrock
2,965 Expert 2GB
In tblVEHICLE DETAILS, is there a field titled CUA#?
Jan 31 '13 #25
dgaletar
72 64KB
OK, I can't seem to post to this list anymore. I have posted the same thing 3 times and it is showing up in the other forum topic.
Jan 31 '13 #26
dgaletar
72 64KB
Yes. It is the Primary Key for the table. Department is also in this table, although it is a drop down list, drawing it's info from the table Departments.
Jan 31 '13 #27
Seth Schrock
2,965 Expert 2GB
Oh, Duh. I can't believe I missed that. What other fields in tblVEHICLE DETAILS do you want to see in your combo box? You will need to enter those field names in the SELECT portion of your query as well.

What other forum topic are you talking about?
Jan 31 '13 #28
dgaletar
72 64KB
The last one... the forum topic where we were originally.

Anyway, that is the only field that will need to be seen. The idea is that they select the department from the first drop down list. Then, they move to the next drop down where the CUA#'s are populated for that department.

Although we haven't gotten this far yet, once they select the CUA# that they want from that list, it opens the appropriate form for that vehicle.
Jan 31 '13 #29
Seth Schrock
2,965 Expert 2GB
Oh, we are in the same forum topic, just page 2. Each page only holds 25 posts.

Something seems strange with the way you are designing this database. Can you list the fields in tblVEHICLE DETAILS along with their data types for me? I have a guess of what is wrong, but I would like to check the list before going further.
Jan 31 '13 #30
dgaletar
72 64KB
Sure. There is also an image of it in my first post.

CUA# - Number (also PK)(this is the vehicles number assigned by our department - we are in charge of maintaining all vehicles)
TAG # - Text (vehicles license plate #)
VIN - Text (vehicles VIN #)
Year - Number (year of vehicle)
Make - Text (lookup box with the values typed in)
Model - Text
Trim Level - Text
Standard Seating - Number
Inspection Due - Date/Time
Department - Number (combo box with the following as the row source: SELECT [Department].ID, [Department].Department FROM Department ORDER BY [Department]; )
Alt ID - Text (this is the number that the department uses and is sometimes different from the CUA#)
Tag Due - Date/Time
Link - Hyperlink
Attachments - Attachment

...and that's it!
Jan 31 '13 #31
Seth Schrock
2,965 Expert 2GB
Okay, that is what I thought. You are going to want your criteria to be
Expand|Select|Wrap|Line Numbers
  1. WHERE Department = 4
in your test query. That way you will find all the vehicles that are in department number 4. If you search for CUA# = 4, then you will only find the vehicle with ID number 4. Does that make sense?

Once we move this back to VBA, then the WHERE clause will be
Expand|Select|Wrap|Line Numbers
  1. "WHERE Department = " & Me.Department
Jan 31 '13 #32
dgaletar
72 64KB
OKAY... here's the new query code:

Expand|Select|Wrap|Line Numbers
  1. SELECT [CUA#]
  2. FROM VEHICLE_DETAILS
  3. WHERE [Department]=4;
  4.  
...and the results are correct; when I run the query I get a list of the numbers for the first department.

YEAH!!!
Jan 31 '13 #33
Seth Schrock
2,965 Expert 2GB
Great! So now we can edit your VBA to be:
Expand|Select|Wrap|Line Numbers
  1. Dim strSql As String
  2.     strSql = "SELECT [CUA#] " & _
  3.     "FROM VEHICLE_DETAILS " & _
  4.     "WHERE [Department] = " & Me!Department
  5.  
  6.     .RowSource = strSql
This will replace the code in lines 10 - 16 of post #3. Let me know if that works.
Jan 31 '13 #34
dgaletar
72 64KB
Here is my code, start to finish. I am still getting an error msg though.

Expand|Select|Wrap|Line Numbers
  1. Private Sub Combo14_Click()
  2.         With Me![CUA#]
  3.             If IsNull(Me!Department) Then
  4.                 .RowSource = ""
  5.     Dim strSql As String
  6.         strSql = "SELECT [CUA#] " & _
  7.         "FROM VEHICLE_DETAILS " & _
  8.         "WHERE [Department] = " & Me!Department
  9.  
  10.         .RowSource = strSql
  11.  
  12.  
  13.     Debug.Print strSql
  14.     .RowSource = strSql
  15.  
  16.  
  17.              End If
  18.             Call .Requery
  19.         End With
  20. End Sub
" Call .Requery" is now in yellow.
Jan 31 '13 #35
Seth Schrock
2,965 Expert 2GB
You can use just .Requery, but I don't think that you will need it. I could be wrong though.
Jan 31 '13 #36
dgaletar
72 64KB
When I take the "Call" out I still get the error, and when I comment it out all together the "End With" turns yellow.
Jan 31 '13 #37
Seth Schrock
2,965 Expert 2GB
It sounds like you need to reset the execution of you code. Click on the button that looks like the stop button next to the "play" and "pause" buttons or click on Run > Reset. Make sure that your .Requery is still commented out, and then click on your combo box to trigger its event and see what happens.
Jan 31 '13 #38
dgaletar
72 64KB
Nothing happened. Whichever department I choose shows all of the results for the truck numbers! :-(
Jan 31 '13 #39
Rabbit
12,516 Expert Mod 8TB
You're missing the Else part of the If statement. Right now your code won't run unless Department is null. Also, there's no need to assign strSQL twice.
Jan 31 '13 #40
Seth Schrock
2,965 Expert 2GB
Oops. Missed that it got removed.
Jan 31 '13 #41
dgaletar
72 64KB
I'm sorry guys, but I'm lost. I'm trying different coding there and I still can't figure out what this string should look like.
Jan 31 '13 #42
zmbd
5,501 Expert Mod 4TB
Agree with Seth,
Post the code again... looks like a Grimlen has taken over the keyboards again :)
Jan 31 '13 #43
dgaletar
72 64KB
Expand|Select|Wrap|Line Numbers
  1. Private Sub Combo14_Click()
  2.         With Me![CUA#]
  3.             If IsNull(Me!Department) Then
  4.                 .RowSource = ""
  5.  
  6.             Else
  7.                 .RowSource = "SELECT [CUA#] " & _
  8.                              "FROM [tblVEHICLE_DETAILS] " & _
  9.                              "WHERE [Department]=" & Me!Department
  10.  
  11.  
  12. '    Dim strSql As String
  13. '        strSql = "SELECT [CUA#] " & _
  14. '        "FROM VEHICLE_DETAILS " & _
  15. '        "WHERE [Department] = " & Me!Department
  16. '
  17.         .RowSource = strSql
  18.  
  19.  
  20.     Debug.Print strSql
  21.     .RowSource = strSql
  22.  
  23.  
  24.              End If
  25.              Call .Requery
  26.         End With
  27. End Sub
Jan 31 '13 #44
zmbd
5,501 Expert Mod 4TB
Yours cleaned up a tad:
Expand|Select|Wrap|Line Numbers
  1. Private Sub Combo14_Click()
  2.     With Me![CUA#]
  3.         If IsNull(Me!Department) Then
  4.             .RowSource = ""
  5.         Else
  6.             .RowSource = "SELECT [CUA#] " & _
  7.                 "FROM [tblVEHICLE_DETAILS] " & _
  8.                 "WHERE [Department]=" & Me!Department
  9.         End If
  10.         .Requery
  11.     End With
  12. End Sub

The way I would do this for troubleshooting:
Expand|Select|Wrap|Line Numbers
  1. Private Sub Combo14_Click()
  2. Dim zstrSQL As String
  3.     With Me![CUA#]
  4.         If IsNull(Me!Department) Then
  5.             .RowSource = ""
  6.         Else
  7.             zstrSQL = "SELECT [CUA#] " & _
  8.                 "FROM [tblVEHICLE_DETAILS] " & _
  9.                 "WHERE [Department]=" & Me!Department
  10. 'Let us see the string
  11.             Debug.Print "resolved string is::: " & zstrSQL
  12.             .RowSource = zstrSQL
  13.         End If
  14.         .Requery
  15.     End With
  16. End Sub
I know that some like to use the "CALL" with a requery or other method of the class/form... more than likely a better way of coding; however, it's not something I'm used to doing in VBA
Jan 31 '13 #45
dgaletar
72 64KB
Using the cleaned up code, I get an error that highlights the following fields:

Expand|Select|Wrap|Line Numbers
  1.                 .RowSource = "SELECT [CUA#] " & _
  2.                     "FROM [tblVEHICLE_DETAILS] " & _
  3.                     "WHERE [Department]=" & Me!Department
Jan 31 '13 #46
dgaletar
72 64KB
and using the second "troubleshooting" code, I get an error that highlights the following field:

Expand|Select|Wrap|Line Numbers
  1.                 .RowSource = zstrSQL
  2.  
Jan 31 '13 #47
dgaletar
72 64KB
Guys, I'm really sorry but I have to leave for the day. I will be back at this tomorrow morning at 7:01am EST.

THANK YOU ALL FOR ALL OF THE HELP WITH THIS!!!
Jan 31 '13 #48
zmbd
5,501 Expert Mod 4TB
We cross posted, added a tad.

Simply stating that you get an error isn't helpfull. Please give the EXACT title, error number, and error text/description.

Also, please do a Compile from the Debug menu, fix any errors shown and then re-compile, fix, repeat until you do not get any errors.

In the debug window will be the SQL string (press <ctrl><g>) post that string.
Jan 31 '13 #49
Seth Schrock
2,965 Expert 2GB
From post #35 that you said worked, your table name is VEHICLE_DETAILS. In post #46, the table name became tblVEHICLE_DETAILS on line 8. Line 14 has what I believe to be the correct table name, but it is commented out. When the code got cleaned up, the table name tblVEHICLE_DETAILS was the name used. If this table name is incorrect, it would explain post #48 saying that you got an error on that code. The table name was an issue before and really needs to get cleared up.

Which table name is correct?
tblVEHICLE_DETAILS
or
VEHICLE_DETAILS
Jan 31 '13 #50

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

Similar topics

0
by: cognoscento | last post by:
I'm currently putting together a database for my work (not an expert by any stretch, so muddling through as best as I can... you know the story...) and I could use some advice and hand-holding ...
0
by: visionstate | last post by:
Hi All, I have a few tiny problems left with my cascading combo boxes. Here is what my form looks like: http://img219.imageshack.us/my.php?image=databaseformwl5.png The way it works is by...
4
Rabbit
by: Rabbit | last post by:
Cascading Combo/List Boxes This tutorial is to guide you in the creation of Cascading combo/list boxes. That is when you have multiple combo/list boxes where the selection of an option in one...
3
by: buddyr | last post by:
Hello, Yesterday I recieved help with two cascading combo boxes on an access form. I went the link http://www.fontstuff.com/access/acctut10.htm And basically used their first example. Now I...
4
klarae99
by: klarae99 | last post by:
Hello, I am working on an Access 2003 Database. The tables that pertain to this issue are tblOrg, tblState, tblCity, and tblZip. I have posted the table structure with only the pertinant fields...
3
kcdoell
by: kcdoell | last post by:
I have 5 cascading combo boxes on a form. Below is a sample of my vb in the first combo box: Private Sub CboDivision_AfterUpdate() 'When the Division is selected, the appropriate Segment...
7
by: Toireasa | last post by:
Hi, Newbie Access developer here, and my first post on this forum, so I might not get everything right - thanks in advance for your help and your patience! I'm using Access 2007, in XP. I'm...
8
by: 20028431 | last post by:
This is driving me mad! I have been trying for 3 days now to work out how to do this with no success. I have tables for Customer, Bookings, Entertainment, Act, Agent, and several others. I...
3
by: MOCaseA | last post by:
I have a record lookup form that has several combo box filters set up. However I noticed a slight problem. The filters are working correctly, but there are now over 2000 entries and when filtering...
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
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
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
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
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
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.