473,405 Members | 2,167 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.

OpenReport from an External Database

194 100+
Hi Everyone,

I made a database named MainDatabase (with several reports based on several queries) and kept that database on the server. now i made another database named NewDatabase and made a form to insert values into MainDatabase using connection, which is explained below:

Dim ExtDB as Database
Dim strPath as String

strPath = "\\server\MinDatabase.mdb"

Set ExtDB = DBEngine.Workspac(0).OpenDatabase(strPath)

(i appologize if there is any spelling mistake in the code above)

This code is working when i updating values using Recordset. But i failed to understand how i can open the report of MainDatabase in my NewDatabase.Is there any procedure or code by using which i can open/view the report.

Please note that Server is located on local network.An expeditous reply is requested.

Thanking you.


Regards

Mohammad Faisal
Nov 8 '07 #1
16 3655
ADezii
8,834 Expert 8TB
Hi Everyone,

I made a database named MainDatabase (with several reports based on several queries) and kept that database on the server. now i made another database named NewDatabase and made a form to insert values into MainDatabase using connection, which is explained below:

Dim ExtDB as Database
Dim strPath as String

strPath = "\\server\MinDatabase.mdb"

Set ExtDB = DBEngine.Workspac(0).OpenDatabase(strPath)

(i appologize if there is any spelling mistake in the code above)

This code is working when i updating values using Recordset. But i failed to understand how i can open the report of MainDatabase in my NewDatabase.Is there any procedure or code by using which i can open/view the report.

Please note that Server is located on local network.An expeditous reply is requested.

Thanking you.


Regards

Mohammad Faisal
You can use a little Automation.
  1. Declare a Module Level Variable
    Expand|Select|Wrap|Line Numbers
    1. Dim appAccess As Access.Application
  2. Execute the following code where appropriate.
    Expand|Select|Wrap|Line Numbers
    1. Const strDBPath = "\\server\MinDatabase.mdb"
    2.  
    3. 'Create new instance of Microsoft Access.
    4. Set appAccess = CreateObject("Access.Application")
    5.  
    6. 'Open database in Microsoft Access window.
    7. appAccess.OpenCurrentDatabase strDBPath
    8.  
    9. 'Open Report.
    10. appAccess.DoCmd.OpenReport "<Your Report Name>", acViewPreview, , , acWindowNormal
  3. Close the Database containing the Report, Quit the Instance of Access, release Resources assigned to it.
    Expand|Select|Wrap|Line Numbers
    1. appAccess.CloseCurrentDatabase
    2. appAccess.Quit
    3. Set appAccess = Nothing
Nov 8 '07 #2
mfaisalwarraich
194 100+
Thank you for your great reply. This example would really help me to know new ways to connect external databases.

The code you gave me is working nicely. But there is one thing which i wana eliminate that is i want to view the report only. This code is enabling the user to open each n every object of the database. I just wana open a particular report.

How i can achieve this?

Thanking you.

regards.

Mohammad Faisal
Nov 8 '07 #3
ADezii
8,834 Expert 8TB
Thank you for your great reply. This example would really help me to know new ways to connect external databases.

The code you gave me is working nicely. But there is one thing which i wana eliminate that is i want to view the report only. This code is enabling the user to open each n every object of the database. I just wana open a particular report.

How i can achieve this?

Thanking you.

regards.

Mohammad Faisal
Here you may run into serious problems. Why not simply change 1 Argument
and Print the Report instead of viewing it, as in:
Expand|Select|Wrap|Line Numbers
  1. appAccess.DoCmd.OpenReport "<Your Report Name>", acViewNormal, , , acWindowNormal
Nov 8 '07 #4
mfaisalwarraich
194 100+
Thank you again. This will serve my purpose.

I am now trying to populate a combo box with the field of an external database. But I failed achieving this. I shall be grateful to you if u would kindly help me in this matter also.

Thanking you.

Regards

Mohammad Faisal
Nov 9 '07 #5
ADezii
8,834 Expert 8TB
Thank you again. This will serve my purpose.

I am now trying to populate a combo box with the field of an external database. But I failed achieving this. I shall be grateful to you if u would kindly help me in this matter also.

Thanking you.

Regards

Mohammad Faisal
  1. What is the Name of the External Database?
  2. What is the Absolute Path to the External Database?
  3. What is the Name of the Table in the External Database which contains the Field data to populate the Combo Box?
  4. What is the Field Name and its Data Type?
  5. What is the Name of the Combo Box and the Name of the Form on which it resides?
  6. Should the values in the Combo Box be Unique?
  7. Should these values be Sorted, and if so, Ascending or Descending?
  8. What Version of Access are you using? (Critical question).
  9. I'll check back tonight and see if you have answered these questions.
Nov 9 '07 #6
mfaisalwarraich
194 100+
  1. What is the Name of the External Database?
  2. What is the Absolute Path to the External Database?
  3. What is the Name of the Table in the External Database which contains the Field data to populate the Combo Box?
  4. What is the Field Name and its Data Type?
  5. What is the Name of the Combo Box and the Name of the Form on which it resides?
  6. Should the values in the Combo Box be Unique?
  7. Should these values be Sorted, and if so, Ascending or Descending?
  8. What Version of Access are you using? (Critical question).
  9. I'll check back tonight and see if you have answered these questions.
I like to reply you as under:

1. Name of the external database is MainDatabase.
2. Absolute Path of External Database is "\\server\MainDatabase.MDB" (local
network path)
3. The Name of the Table in the external database which contains the field data
to populate the Combo Box is "tbl_Unit"
4. Field Name is Units and its Data Type is String (text)
5. The Name of the Combo Box is cboUnit and Form's Name is frmUnitSelect
6. Yes the Values of this combo box will be unique
7. Yes these values will be sorted Ascending.
8. Version of MS Access is 2002.

Thank you for your prompt replies.

Regards

Mohammad Faisal
Nov 9 '07 #7
ADezii
8,834 Expert 8TB
I like to reply you as under:

1. Name of the external database is MainDatabase.
2. Absolute Path of External Database is "\\server\MainDatabase.MDB" (local
network path)
3. The Name of the Table in the external database which contains the field data
to populate the Combo Box is "tbl_Unit"
4. Field Name is Units and its Data Type is String (text)
5. The Name of the Combo Box is cboUnit and Form's Name is frmUnitSelect
6. Yes the Values of this combo box will be unique
7. Yes these values will be sorted Ascending.
8. Version of MS Access is 2002.

Thank you for your prompt replies.

Regards

Mohammad Faisal
Okay Mohammad, here we go. Any questions please feel free to ask. The code has been thoroughly tested and is fully functional. Good luck, and let me know how you make out.
Expand|Select|Wrap|Line Numbers
  1. Const conPathToExternalDB As String = "\\server\MainDatabase.mdb"
  2. Dim wrkJet As Workspace, strSQL As String
  3. Dim dbsMain As DAO.Database, rstMain As Recordset
  4.  
  5. 'Set some initial properties for the Combo Box (cboUnit)
  6. With Me![cboUnit]
  7.   .RowSourceType = "Value List"
  8.   .ColumnCount = 1
  9.   .ColumnWidth = -1   'Default Width
  10. End With
  11.  
  12. 'Will be used in creating a Recordset consisting of Unique Units from tbl_Unit
  13. 'Sorted by Units Ascending
  14. strSQL = "SELECT DISTINCT tbl_Unit.Units From Employees ORDER BY tbl_Unit.Units;"
  15.  
  16. 'Create a Microsoft Jet Workspace Object with the Default Name, no Password,
  17. 'Admin User, using Jet
  18. Set wrkJet = CreateWorkspace("", "admin", "", dbUseJet)
  19.  
  20. 'Open a Database Object based on the External Database (Exclusive, Read Only)
  21. Set dbsMain = wrkJet.OpenDatabase(conPathToExternalDB, True, True)
  22.  
  23. Set rstMain = dbsMain.OpenRecordset(strSQL, dbOpenSnapshot)
  24.  
  25. Do While Not rstMain.EOF
  26.   Me![cboUnit].AddItem rstMain![Units]
  27.     rstMain.MoveNext
  28. Loop
  29.  
  30. Don't forget your clean-up chores
  31. rstMain.Close
  32. dbsMain.Close
  33. wrkJet.Close
  34.  
  35. Set rstMain = Nothing
  36. Set dbsMain = Nothing
  37. Set wrkJet = Nothing
  38.  
Nov 9 '07 #8
mfaisalwarraich
194 100+
Okay Mohammad, here we go. Any questions please feel free to ask. The code has been thoroughly tested and is fully functional. Good luck, and let me know how you make out.
Expand|Select|Wrap|Line Numbers
  1. Const conPathToExternalDB As String = "\\server\MainDatabase.mdb"
  2. Dim wrkJet As Workspace, strSQL As String
  3. Dim dbsMain As DAO.Database, rstMain As Recordset
  4.  
  5. 'Set some initial properties for the Combo Box (cboUnit)
  6. With Me![cboUnit]
  7.   .RowSourceType = "Value List"
  8.   .ColumnCount = 1
  9.   .ColumnWidth = -1   'Default Width
  10. End With
  11.  
  12. 'Will be used in creating a Recordset consisting of Unique Units from tbl_Unit
  13. 'Sorted by Units Ascending
  14. strSQL = "SELECT DISTINCT tbl_Unit.Units From Employees ORDER BY tbl_Unit.Units;"
  15.  
  16. 'Create a Microsoft Jet Workspace Object with the Default Name, no Password,
  17. 'Admin User, using Jet
  18. Set wrkJet = CreateWorkspace("", "admin", "", dbUseJet)
  19.  
  20. 'Open a Database Object based on the External Database (Exclusive, Read Only)
  21. Set dbsMain = wrkJet.OpenDatabase(conPathToExternalDB, True, True)
  22.  
  23. Set rstMain = dbsMain.OpenRecordset(strSQL, dbOpenSnapshot)
  24.  
  25. Do While Not rstMain.EOF
  26.   Me![cboUnit].AddItem rstMain![Units]
  27.     rstMain.MoveNext
  28. Loop
  29.  
  30. Don't forget your clean-up chores
  31. rstMain.Close
  32. dbsMain.Close
  33. wrkJet.Close
  34.  
  35. Set rstMain = Nothing
  36. Set dbsMain = Nothing
  37. Set wrkJet = Nothing
  38.  

Hi, thank you once again for your generosity. This code is working with some changes, which were mandatory to mode. You just see the code below that you have given to me:

strSQL = "SELECT DISTINCT tbl_Unit.Units From Employees ORDER BY tbl_Unit.Units;"

Now what is Employees???? and when I ran all code there was an error of conflicting distinct with order by. But with some changes i.e. removing Employees and ORDER BY, I got the values into combo box as desired by me. There should be something to do for me also so i did it :)).

The methods you used in all our discussion are really outstanding, which turned Access into Success. Here in my part of World, Pakistan (Asia), there is no particular institute/school, from where u can learn only MS Access but there are a lot about Visual Basic. You just guide me that learning Visual Basic is almost equal to learning MS Access??

Thanking you.
Nov 11 '07 #9
ADezii
8,834 Expert 8TB
Hi, thank you once again for your generosity. This code is working with some changes, which were mandatory to mode. You just see the code below that you have given to me:

strSQL = "SELECT DISTINCT tbl_Unit.Units From Employees ORDER BY tbl_Unit.Units;"

Now what is Employees???? and when I ran all code there was an error of conflicting distinct with order by. But with some changes i.e. removing Employees and ORDER BY, I got the values into combo box as desired by me. There should be something to do for me also so i did it :)).

The methods you used in all our discussion are really outstanding, which turned Access into Success. Here in my part of World, Pakistan (Asia), there is no particular institute/school, from where u can learn only MS Access but there are a lot about Visual Basic. You just guide me that learning Visual Basic is almost equal to learning MS Access??

Thanking you.
Now what is Employees???? and when I ran all code there was an error of conflicting distinct with order by.
Employees is a typographical error, it is simply the Table that I do a lot of testing on - substitute tbl_Unit for it.
Nov 11 '07 #10
mfaisalwarraich
194 100+
Hi Again, Here is something for you again :).

I made an unbound form named EntryFrom, which is storing data into a table named MainTable to an Access Database named PatientsAdmission.mdb. This form has a Combo Box named cboCity which is getting values from a table named CityCountryTable of another MS Access Database named CityCountry.mdb.

The cboCity combo box is only populating Cities from Table of CityCountryTable, which has two fields City and Country. Each city has unique id whereas country depends on city. This table does not need ascending/descending order. It depends on entries.

City: Country:

Vancouver Canada
Montreal Canada
Toronto Canada
New York USA
Washington USA
California USA
Birmingham UK
Shanghai China
Delhi India
Mumbai India
Karachi Pakistan
Islamabad Pakistan
Lahore Pakistan
Tokyo Japan

And so on.

Please note that MainTable’s field City is only saving City name from EntryForm’s Combo Box named cboCity and this form is undound.

This form has another ComboBox named cboDisease. This Combo Box is storing values into MainTable’s filed Disease.

Data Type of Fields is Text.

Now, how I can count the number of patients for a particular disease and then for a particular city.

For example I want to count total number of patients in MainTable with Country is equal to Pakistan and Disease is equal to “Tuberclosis”. Whereas MainTable is only saving the name of the city. How I can do all this with some code using Database, Recordset and QueryDefs or TableDefs objects. All three databases using Version 2002. After Calculating the total number of patients for particular disease and country, I want them to display on a new report based on these results.

Thanking you.

(Appologize for any spelling mistake herein above)

Regards

Mohammad Faisal
Nov 13 '07 #11
ADezii
8,834 Expert 8TB
Hi Again, Here is something for you again :).

I made an unbound form named EntryFrom, which is storing data into a table named MainTable to an Access Database named PatientsAdmission.mdb. This form has a Combo Box named cboCity which is getting values from a table named CityCountryTable of another MS Access Database named CityCountry.mdb.

The cboCity combo box is only populating Cities from Table of CityCountryTable, which has two fields City and Country. Each city has unique id whereas country depends on city. This table does not need ascending/descending order. It depends on entries.

City: Country:

Vancouver Canada
Montreal Canada
Toronto Canada
New York USA
Washington USA
California USA
Birmingham UK
Shanghai China
Delhi India
Mumbai India
Karachi Pakistan
Islamabad Pakistan
Lahore Pakistan
Tokyo Japan

And so on.

Please note that MainTable’s field City is only saving City name from EntryForm’s Combo Box named cboCity and this form is undound.

This form has another ComboBox named cboDisease. This Combo Box is storing values into MainTable’s filed Disease.

Data Type of Fields is Text.

Now, how I can count the number of patients for a particular disease and then for a particular city.

For example I want to count total number of patients in MainTable with Country is equal to Pakistan and Disease is equal to “Tuberclosis”. Whereas MainTable is only saving the name of the city. How I can do all this with some code using Database, Recordset and QueryDefs or TableDefs objects. All three databases using Version 2002. After Calculating the total number of patients for particular disease and country, I want them to display on a new report based on these results.

Thanking you.

(Appologize for any spelling mistake herein above)

Regards


Mohammad Faisal
Just subscribing, will return later when I have more time.
Nov 13 '07 #12
mfaisalwarraich
194 100+
Just subscribing, will return later when I have more time.
Thank you for your subscription. I am waiting for your reply.

Regards

Mohammad Faisal
Nov 13 '07 #13
ADezii
8,834 Expert 8TB
Thank you for your subscription. I am waiting for your reply.

Regards

Mohammad Faisal
It may be a relatively simple matter, but first a couple of critical questions:
  1. The External Database, CityCounty.mdb, contains a Table named CityCountyTable, and this Table consists of 2 Fields [City] and [County]. Is this correct?
  2. Is the [City] Field in CityCountyTable Unique (no duplication)?
  3. MainTable (Local Table) in PatientsAdmission.mdb contains at a minimum [City] and [Disease] Fields. Is this correct?
  4. Is the [City] Field in Main Table Unique (no duplication)?
  5. Does CityCountyTable have a Primary Key, and if so what is it, and what is its Data Type?
  6. Does MainTable have a Primary Key, and if so what is it, and what is its Data Type?
  7. Are you familiar with Linking Tables in External Databases?
  8. Do you know how to create a Relationship between Tables?
  9. Kindly answer these questions as accurately as you can, in order to provide a more accurate solution to your problem.
Nov 13 '07 #14
mfaisalwarraich
194 100+
Thank you for your reply. I would like to reply you as under:

1. No, there is another field of Primary Key ID having Data Type LongInteger (AutoNumber) and New Values set to Increment.

2. Yes, It is unique (no duplication)
3. Yes, mimum these two fields only.
4. No, this field can't be unique in MainTable as many patients can be admitted at the same time belonging to same city.
5. Yes, it has a primary key ID and Data Type is Long Integer (AutoNumber) with New Values set to Increment.
6. Yes, it has a primary key ID and Data Type is Long Integer (AutoNumber) with New Values set to Increment.
7. No, I am not faimiliar with Linking TAbles in External Databases.
8. Yes, I know creating relationships between tables with the help of Relationships in Tools Menu but not familiar doing this with code.


Your such questions are really encouraging and would help me to improve my skills. I have tried my level best to reply your questions accordingly. This forum is really a paradise for people like me around the world. May God bless u all.

Regards

Mohammad Faisal
Nov 14 '07 #15
ADezii
8,834 Expert 8TB
Thank you for your reply. I would like to reply you as under:

1. No, there is another field of Primary Key ID having Data Type LongInteger (AutoNumber) and New Values set to Increment.

2. Yes, It is unique (no duplication)
3. Yes, mimum these two fields only.
4. No, this field can't be unique in MainTable as many patients can be admitted at the same time belonging to same city.
5. Yes, it has a primary key ID and Data Type is Long Integer (AutoNumber) with New Values set to Increment.
6. Yes, it has a primary key ID and Data Type is Long Integer (AutoNumber) with New Values set to Increment.
7. No, I am not faimiliar with Linking TAbles in External Databases.
8. Yes, I know creating relationships between tables with the help of Relationships in Tools Menu but not familiar doing this with code.


Your such questions are really encouraging and would help me to improve my skills. I have tried my level best to reply your questions accordingly. This forum is really a paradise for people like me around the world. May God bless u all.

Regards

Mohammad Faisal
  1. The first step in the next process will be to create a Link to the CityCountyTable in CityCounty.mdb.
    1. File ==> Get External ==> Link Tables.
    2. Browse to External Database ==> Click on Link Button.
    3. Click on Tables Tab ==> select CityCountyTable ==> OK.
    4. You now have created an External Link to a Table and for all practical purposes, can treat it as a Local Table.
  2. Create a Query Joining CityCountyTable and MainTable via the [City] Field Link.
    1. In the Database Window ==> Queries ==> New.
    2. Select Design View ==> OK.
    3. Tables Tab.
    4. Select CityCountyTable ==> OK.
    5. Select MainTable ==> OK.
  3. Drag the [City] Field from CityCountyTable to the [City] Field in MainTable and release the Mouse. There should now be a Join between both [City] Fields in the Tables.
  4. Right Click the Join Line ------, Join Properties ==> Check the Linkage ==> OK.
  5. Close and Save the Query then let me know when and if you have successfully reached this point.
NOTE: Checki the spelling of the [City] Fields in both Tables. If the City Mumbai exists in CityCountyTable but is spelled Mumbia in the MainTable, the Join will be ineffective and the Record(s) will not show.
Nov 14 '07 #16
ADezii
8,834 Expert 8TB
Thank you for your reply. I would like to reply you as under:

1. No, there is another field of Primary Key ID having Data Type LongInteger (AutoNumber) and New Values set to Increment.

2. Yes, It is unique (no duplication)
3. Yes, mimum these two fields only.
4. No, this field can't be unique in MainTable as many patients can be admitted at the same time belonging to same city.
5. Yes, it has a primary key ID and Data Type is Long Integer (AutoNumber) with New Values set to Increment.
6. Yes, it has a primary key ID and Data Type is Long Integer (AutoNumber) with New Values set to Increment.
7. No, I am not faimiliar with Linking TAbles in External Databases.
8. Yes, I know creating relationships between tables with the help of Relationships in Tools Menu but not familiar doing this with code.


Your such questions are really encouraging and would help me to improve my skills. I have tried my level best to reply your questions accordingly. This forum is really a paradise for people like me around the world. May God bless u all.

Regards

Mohammad Faisal
  1. The first step in the next process will be to create a Link to the CityCountyTable in CityCounty.mdb.
    1. File ==> Get External ==> Link Tables.
    2. Browse to External Database ==> Click on Link Button.
    3. Click on Tables Tab ==> select CityCountyTable ==> OK.
    4. You now have created an External Link to a Table and for all practical purposes, can treat it as a Local Table.
  2. Create a Query Joining CityCountyTable and MainTable via the [City] Field Link.
    1. In the Database Window ==> Queries ==> New.
    2. Select Design View ==> OK.
    3. Tables Tab.
    4. Select CityCountyTable ==> OK.
    5. Select MainTable ==> OK.
  3. Drag the [City] Field from CityCountyTable to the [City] Field in MainTable and release the Mouse. There should now be a Join between both [City] Fields in the Tables. This Join is a 1 to MANY.
  4. Right Click the Join Line ------, Join Properties ==> Check the Linkage ==> OK.
  5. Close and Save the Query then let me know when and if you have successfully reached this point.
NOTE: Check the spelling of the [City] Fields in both Tables. If the City Mumbai exists in CityCountyTable but is spelled Mumbia in the MainTable, the Join will be ineffective and the Record(s) will not show.
Nov 14 '07 #17

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

Similar topics

3
by: Aaron | last post by:
Hello, I'm trying to limit a report to a list of parameters that I pass in. The report and the underlying query both use the column FirstName. Whenever I try to limit the FirstName in via the...
1
by: LittleCheeseburger | last post by:
Hi, For my 'On No Data' event I have the following code: Private Sub Report_NoData(Cancel As Integer) On Error Resume Next MsgBox "There is no data available for your selections.",...
2
by: Jonathan Goldman | last post by:
Hi- I have a relatively simple report that I open in an Access '97 VBA procedure, using the Docmd.OpenReport "rptName", acViewNormal syntax. The problem is that doing this usually crashes...
5
by: fearblanco | last post by:
Hello - I am receiving the below error message when attempting to open a report. This database is used by approximately 20 users and only one user is having this problem (even I can't duplicate...
3
by: bruce | last post by:
Hello, In Access 2003 one can use OpenReport with the acDialog parameter to open a report modally. However, doing this prevents the report's toolbars from displaying. Is there a way around...
1
by: kistemaker | last post by:
Hi, I could need your help. I am working with ACC97 as frontend and Oracle9 as database. All Queries are made as pass-through-queries. Everything looks fine, but I can't handle the OpenReport to...
3
by: enough2Bdangerous | last post by:
access runtime error 3011 on docmd.openreport -------------------------------------------------------------------------------- Access database (file format 2002-2003) generates reports with...
4
by: Simon | last post by:
Dear reader, The syntax for Docmd.OpenReport is: OpenReport(ReportName, View, FilterName, WhereCondition, WindowMode, OpenArgs) Example The following example prints Sales Report while...
4
by: jonosborne | last post by:
Hi, I have a database which allows users to either Print, Preview or Export their reports, using the OpenReport command for the Print and Preview and the OutputTo command for Exporting. ...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
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
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
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.