473,387 Members | 1,721 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,387 software developers and data experts.

How to reset AutoNumber sequence?

Is there a way to reset the AutoNumber sequence?

I have several tables that use the AutoNumber field as the Primary Key, and
I'd like to somehow do an Import/Export that will make remove the breaks in
the sequence. A few breaks in sequence is not a big deal, but I have one
table with under 200 records, but the last AutoNumber PK ID field is over
1500 - due to a lot of edits....
Nov 12 '05 #1
12 23716
DFS
deko,

* create new tables and import all fields except the AutoNumber -
problematic if you have parent/child relationships.

* drop the AutoNumber field, save the table, repair and compact the database
(just because), and add back an AutoNumber field - again, problematic if you
have parent/child relationships.

Recommendation (not being sarcastic): don't get hung up on sequential
AutoNumbers, or small AutoNumbers, or AutoNumbers matching the number of
records in the table. I have SQL Server tables with 8-digit AutoNumbers
(IDENTITYs in SQL).

Your pk fields aren't used for Account Numbers, Invoice Numbers, etc.,
right? So it's just a unique number, and small - let it be.

"deko" <dj****@hotmail.com> wrote in message
news:BC***********@newssvr29.news.prodigy.com...
Is there a way to reset the AutoNumber sequence?

I have several tables that use the AutoNumber field as the Primary Key, and I'd like to somehow do an Import/Export that will make remove the breaks in the sequence. A few breaks in sequence is not a big deal, but I have one
table with under 200 records, but the last AutoNumber PK ID field is over
1500 - due to a lot of edits....

Nov 12 '05 #2
> Your pk fields aren't used for Account Numbers, Invoice Numbers, etc.,
right? So it's just a unique number, and small - let it be.


The ID numbers are visible to the user and can be used for searching, but
sequence is not really important. I don't expect the Entity table to exceed
100,000 records, and a 4 or 5 digit Entity_ID is just fine. But I'd like
the "Help" entry to be Entity_ID 1 - it would be nice to purge the test data
and insert the Help entry as the first record.

Perhaps I could create a blank database, import just the table structures,
then drop the ID fields on the original database, and import just the data -
would this re-order all the AutoNumber fields? How can I import the table
data without the structures?

Could I use this code instead of Auto Number? Or is this needless overhead?

Private Sub Form_BeforeInsert(Cancel As Integer)

Dim db As DAO.Database
Dim rst As DAO.Recordset
Set db = CurrentDb
Set rst = db.OpenRecordset("Select max(Entity_ID) as imax from
tblEntity")
rst.MoveFirst
Me!Entity_ID = rst!imax + 1
rst.Close
Set db = Nothing
Set rst = nothing

End Sub
Nov 12 '05 #3
On Tue, 13 Jan 2004 06:17:24 GMT in comp.databases.ms-access, "deko"
<dj****@hotmail.com> wrote:
Your pk fields aren't used for Account Numbers, Invoice Numbers, etc.,
right? So it's just a unique number, and small - let it be.
The ID numbers are visible to the user and can be used for searching, but
sequence is not really important. I don't expect the Entity table to exceed
100,000 records, and a 4 or 5 digit Entity_ID is just fine. But I'd like
the "Help" entry to be Entity_ID 1 - it would be nice to purge the test data
and insert the Help entry as the first record.


Compacting usually resets to the highest number in the table + 1 so
compact after deleting test data.
Perhaps I could create a blank database, import just the table structures,
then drop the ID fields on the original database, and import just the data -
would this re-order all the AutoNumber fields? How can I import the table
data without the structures?
Using the import wizard, import into an existing table, or you can
link the tables from the other database and run a series of append
queries.
Could I use this code instead of Auto Number? Or is this needless overhead?

Private Sub Form_BeforeInsert(Cancel As Integer)

Dim db As DAO.Database
Dim rst As DAO.Recordset
Set db = CurrentDb
Set rst = db.OpenRecordset("Select max(Entity_ID) as imax from
tblEntity")
rst.MoveFirst
Me!Entity_ID = rst!imax + 1
rst.Close
Set db = Nothing
Set rst = nothing

End Sub


It's an overhead, whether it's needless is a matter of opinion, the
pros can outweigh the cons. This way you'll get no gaps (until someone
deletes a record). There's many ways of rolling your own autonumber,
from the simple DMax()+1 to the more complex of having a table full of
table names and autonumber values, the latter checking the target
table in case it already exists and adding another 1, etc, which would
mean you could reset to 1 and re-use any gaps left by deletion.

However I wouldn't do this as early as Form_BeforeInsert() as you'll
duplicate the number as soon as two people enter a record at the same
time. Perhaps in Form_BeforeUpdate() and check to see if on a new
record or that the ID is null first.

--
A)bort, R)etry, I)nfluence with large hammer.
Nov 12 '05 #4
> Using the import wizard, import into an existing table, or you can
link the tables from the other database and run a series of append
queries.


I think that's the ticket...

* create new.mdb
* import all objects, definition only
* link to tables in orig.mdb
* run a series of append queries

I'm going to try to gin this up in vba (everything after create new.mdb)

Should I use the CreateWorkspace method? What are Workspaces, anyway?
Can I use DoCmd.TransferDatabase and loop through each Form, Query, Report,
Module and Table? How to get list of objects from orig.mdb?
I think I can figure out how to link all the tables, and setting up the
append queries shouldn't be too difficult.

Here's some pseudo code as a first draft - suggestions welcome!

'[standard module in new.mdb]
Public Sub ImportLinkAppend()

' import all the objects from orig.mdb
For Each Table In tbldefs '<<== how to programatically get list of
tables in orig.mdb?
DoCmd.TransferDatabase acImportworkspace, "Microsoft Access",
"C:\orig.mdb", acTable, varOrigTableName, varNewTableName, True
Next

' For Each Form In ...
'
' For Each Query In ...
'
' For Each Report In ...
'
' For Each Module In ...
' link to the tables in orig.mdb
Set tdf = db.CreateTableDef(varTbl)
strLink = "Access 11;DATABASE=C:\orig.mdb"
tdf.Connect = strLink
tdf.SourceTableName = "varTbl"
db.TableDefs.Append tdf '<<== will this cause problems since the table
names will be the same?

' run append queries
DoCmd.RunSQL "INSERT INTO varNewTableName SELECT varOldTableName.* FROM
varOldTableName"

End Sub
Nov 12 '05 #5
Here's another hack at it.....

Private Sub ImportObjects()
Dim wrkJet As DAO.Workspace
Dim con As DAO.Container
Dim db As DAO.Database
Dim doc As DAO.Document
Dim varName, varContainer As Variant
Set wrkJet = CreateWorkspace("", "admin", "", dbUseJet)
Set db = wrkJet.OpenDatabase("C:\orig.mdb", True)
For Each varContainer In Array("Tables", "Forms", "Reports", "Modules",
"Queries")
Set con = db.Containers(varContainer)
For Each doc In con.Documents
Select Case doc.Name ???
Case "Tables"
DoCmd.TransferDatabase acImport, "Microsoft Access",
"C:\orig.mdb", acTable, varName, varName, True
Case "Queries"
Case etc...
End Select
Next
Next
End Sub

++++++++++++++++++++

If I do succeed in importing all the objects this way, will the table
relationships be preserved? If I go to File >> Get External Data >> Import,
and select orig.mdb, the "Import Objects" window appears with a check box
for Importing Relationships - how do I specify this in code? The assumption
here is that I can emulate the functionality of that Import Objects window
with code... what about hidden and system objects???
Nov 12 '05 #6
When I run code to inventory my database, I get some "Queries" that look
like this:

~sq_ffrmTxImport

I also get all the normal looking queries, like:

qry100

Does the "~" mean it's some kind of temp object?

Below is complete code of how I get inventory

Option Compare Database
Option Explicit
Private Sub AddInventory(strContainer As String)
Dim con As DAO.Container
Dim db1, db2 As DAO.Database
Dim doc As DAO.Document
Dim rst As DAO.Recordset
Dim intI As Integer
Dim strType As String
Dim varRetval As Variant
Dim wrkJet As DAO.Workspace
Set wrkJet = CreateWorkspace("", "admin", "", dbUseJet)
Set db2 = wrkJet.OpenDatabase("C:\orig.mdb", True)
Set db1 = CurrentDb
Set rst = db1.OpenRecordset("tblInventory")
Set con = db2.Containers(strContainer)
For Each doc In con.Documents
If Not isTemp(doc.Name) Then
If strContainer = "Tables" Then
strType = IIf(isTable(doc.Name), "Tables", "Queries")
Else
strType = strContainer
End If
With rst
.AddNew
!Container = strType
!Owner = doc.Owner
!Name = doc.Name
!DateCreated = doc.DateCreated
!LastUpdated = doc.LastUpdated
.Update
End With
End If
Next doc
End Sub
Private Sub CreateInventory()
If (CreateTable()) Then
Call AddInventory("Tables")
Call AddInventory("Forms")
Call AddInventory("Reports")
Call AddInventory("Scripts")
Call AddInventory("Modules")
Call AddInventory("Relationships")
Else
MsgBox "Unable to create tblInventory."
End If
End Sub
Private Function CreateTable() As Boolean
On Error GoTo HandleErr
Dim qdf As DAO.QueryDef
Dim db As DAO.Database
Dim strSql As String
Set db = CurrentDb()
db.Execute "Drop Table tblInventory"
strSql = "CREATE TABLE tblInventory (Name Text (255), " & _
"Container Text (50), DateCreated DateTime, " & _
"LastUpdated DateTime, Owner Text (50), " & _
"ID AutoIncrement Constraint PrimaryKey PRIMARY KEY)"
db.Execute strSql
db.TableDefs.Refresh
CreateTable = True
Exit_Here:
Exit Function
HandleErr:
Select Case Err.Number
Case 3376, 3011 ' Table or Object not found
Resume Next
Case Else
CreateTable = False
End Select
Resume Exit_Here
End Function
Private Function isTable(ByVal strName As String)
On Error Resume Next
Dim tdf As DAO.TableDef
Dim db As DAO.Database
Dim wrkJet As DAO.Workspace
Set wrkJet = CreateWorkspace("", "admin", "", dbUseJet)
Set db = wrkJet.OpenDatabase("C:\orig.mdb", True)
Set tdf = db.TableDefs(strName)
isTable = (Err = 0)
On Error GoTo 0
End Function
Private Function isTemp(ByVal strName As String)
isTemp = Left(strName, 7) = "~TMPCLP"
End Function
Private Sub cmdCreateInventory_Click()
On Error Resume Next
Me!frmInventoryDatasheet.Form.RecordSource = ""
Call CreateInventory
Me!frmInventoryDatasheet.Form.RecordSource = "tblInventory"
Me!lblObjCount.Caption = DCount("Name", "tblInventory") & " Objects"
End Sub
Private Sub Form_Open(Cancel As Integer)
Me!frmInventoryDatasheet.Form.RecordSource = ""
End Sub
Nov 12 '05 #7
They are temp queries, designed to improve performance when forms/reports
are based on SQL statements.
--
MichKa [MS]
NLS Collation/Locale/Keyboard Development
Globalization Infrastructure and Font Technologies

This posting is provided "AS IS" with
no warranties, and confers no rights.
"deko" <dj****@hotmail.com> wrote in message
news:fl***************@newssvr29.news.prodigy.com. ..
When I run code to inventory my database, I get some "Queries" that look
like this:

~sq_ffrmTxImport

I also get all the normal looking queries, like:

qry100

Does the "~" mean it's some kind of temp object?

Below is complete code of how I get inventory

Option Compare Database
Option Explicit
Private Sub AddInventory(strContainer As String)
Dim con As DAO.Container
Dim db1, db2 As DAO.Database
Dim doc As DAO.Document
Dim rst As DAO.Recordset
Dim intI As Integer
Dim strType As String
Dim varRetval As Variant
Dim wrkJet As DAO.Workspace
Set wrkJet = CreateWorkspace("", "admin", "", dbUseJet)
Set db2 = wrkJet.OpenDatabase("C:\orig.mdb", True)
Set db1 = CurrentDb
Set rst = db1.OpenRecordset("tblInventory")
Set con = db2.Containers(strContainer)
For Each doc In con.Documents
If Not isTemp(doc.Name) Then
If strContainer = "Tables" Then
strType = IIf(isTable(doc.Name), "Tables", "Queries")
Else
strType = strContainer
End If
With rst
.AddNew
!Container = strType
!Owner = doc.Owner
!Name = doc.Name
!DateCreated = doc.DateCreated
!LastUpdated = doc.LastUpdated
.Update
End With
End If
Next doc
End Sub
Private Sub CreateInventory()
If (CreateTable()) Then
Call AddInventory("Tables")
Call AddInventory("Forms")
Call AddInventory("Reports")
Call AddInventory("Scripts")
Call AddInventory("Modules")
Call AddInventory("Relationships")
Else
MsgBox "Unable to create tblInventory."
End If
End Sub
Private Function CreateTable() As Boolean
On Error GoTo HandleErr
Dim qdf As DAO.QueryDef
Dim db As DAO.Database
Dim strSql As String
Set db = CurrentDb()
db.Execute "Drop Table tblInventory"
strSql = "CREATE TABLE tblInventory (Name Text (255), " & _
"Container Text (50), DateCreated DateTime, " & _
"LastUpdated DateTime, Owner Text (50), " & _
"ID AutoIncrement Constraint PrimaryKey PRIMARY KEY)"
db.Execute strSql
db.TableDefs.Refresh
CreateTable = True
Exit_Here:
Exit Function
HandleErr:
Select Case Err.Number
Case 3376, 3011 ' Table or Object not found
Resume Next
Case Else
CreateTable = False
End Select
Resume Exit_Here
End Function
Private Function isTable(ByVal strName As String)
On Error Resume Next
Dim tdf As DAO.TableDef
Dim db As DAO.Database
Dim wrkJet As DAO.Workspace
Set wrkJet = CreateWorkspace("", "admin", "", dbUseJet)
Set db = wrkJet.OpenDatabase("C:\orig.mdb", True)
Set tdf = db.TableDefs(strName)
isTable = (Err = 0)
On Error GoTo 0
End Function
Private Function isTemp(ByVal strName As String)
isTemp = Left(strName, 7) = "~TMPCLP"
End Function
Private Sub cmdCreateInventory_Click()
On Error Resume Next
Me!frmInventoryDatasheet.Form.RecordSource = ""
Call CreateInventory
Me!frmInventoryDatasheet.Form.RecordSource = "tblInventory"
Me!lblObjCount.Caption = DCount("Name", "tblInventory") & " Objects"
End Sub
Private Sub Form_Open(Cancel As Integer)
Me!frmInventoryDatasheet.Form.RecordSource = ""
End Sub

Nov 12 '05 #8
> They are temp queries, designed to improve performance when forms/reports
are based on SQL statements.


10-4 ... thx for the clarification

As for AutoNumber re-sequencing, the plan is:

* create new.mdb
* import all objects, definition only
* link to tables in orig.mdb
* run a series of append queries

I'm not sure using code for the object imports is such a great idea... still
working on that (could just do it manually) - but this code should pull the
data from orig.mdb after I've imported the table definitions (into new.mdb)
and deleted the AutoNumber columns from the tables in orig.mdb. This should
re-sequence the AutoNumber IDs, removing any breaks in sequence. Again, any
suggestion for improvement welcome...
Private Sub GetData()

Dim db, dbs As DAO.Database
Dim obj As Object
Dim strPath As String
Dim wrkJet As DAO.Workspace
Set wrkJet = CreateWorkspace("", "admin", "", dbUseJet)
Set db = wrkJet.OpenDatabase("C:\orig.mdb", True)
Set dbs = CurrentDb
strPath = "C:\orig.mdb"
For Each obj In db.TableDefs
If Left(obj.Name, 2) <> "MS" And Left(obj.Name, 1) <> "~" Then
DoCmd.TransferDatabase acLink, "Microsoft Access", strPath,
acTable, obj.Name, obj.Name & "_orig"
'Debug.Print obj.Name & " connected"
DoCmd.SetWarnings False
DoCmd.RunSQL ("INSERT INTO " & obj.Name & " SELECT " & obj.Name
& "_orig.* FROM " & obj.Name & "_orig")
DoCmd.SetWarnings True
dbs.Execute "DROP TABLE " & obj.Name
End If
Next

End Sub
Nov 12 '05 #9
On Tue, 13 Jan 2004 17:44:06 GMT in comp.databases.ms-access, "deko"
<dj****@hotmail.com> wrote:
If Left(obj.Name, 2) <> "MS" And Left(obj.Name, 1) <> "~" Then
You may be wiser to your naming conventions than I but I think you
should exclude "MSys*" rather than just "MS*"
DoCmd.SetWarnings False
DoCmd.RunSQL ("INSERT INTO " & obj.Name & " SELECT " & obj.Name
& "_orig.* FROM " & obj.Name & "_orig")
DoCmd.SetWarnings True
dbs.Execute "DROP TABLE " & obj.Name


While it may be nice to have the percentage complete provided by the
DoCmd, it also requires you turn warnings off as you have in the code
above. You must make sure you turn it on again if any error occurs
that prevents the next line running. Also it will suppress some lesser
(but no means less important) errors. It is also the slowest method of
running a query, better to use

dbs.Execute "insert into...", dbFailOnError

to catch any errors that do occur, although copying to the same
structure of table, none should occur but then if it was always that
easy then people wouldn't pay me to do it :-)

--
A)bort, R)etry, I)nfluence with large hammer.
Nov 12 '05 #10
Hi Trevor,

Thanks for the tip.

Here's the latest - so close but yet so far...

The problem is trying to loop through each field in the linked table, and
then dropping any field that is an AutoNumber field and ends in "ID". How
can I do this?

Private Sub cmdGetData_Click()
Dim db, dbs As DAO.Database
Dim obj As Object
Dim fld As DAO.Field '<<== should this be something else?
Dim idx As DAO.Index
Dim strPath As String
Dim wrkJet As DAO.Workspace
Set wrkJet = CreateWorkspace("", "admin", "", dbUseJet)
Set db = wrkJet.OpenDatabase("C:\orig.mdb", True)
Set dbs = CurrentDb
strPath = "C:\orig.mdb"
For Each obj In db.TableDefs
If Left(obj.Name, 3) = "tbl" Then
DoCmd.TransferDatabase acLink, "Microsoft Access", strPath,
acTable, obj.Name, obj.Name & "_orig"
For Each fld In db.obj '<<== error here: "Object Doesn't support
this property or method"
If Right(fld.Name, 2) = "ID" And fld.Type = dbAutoIncrField
Then
Debug.Print obj.Name & " has AutoNum ID"
db.Execute "DROP " & fld.Name
End If
Next
dbs.Execute ("INSERT INTO " & obj.Name & " SELECT " & obj.Name &
"_orig.* FROM " & obj.Name & "_orig"), dbFailOnError
dbs.Execute "DROP TABLE " & obj.Name
End If
Next
End Sub
Nov 12 '05 #11
This seems to be working. developing...

Question: why does 17 means dbAutoIncrField ????
Private Sub cmdGetData_Click()
Dim db, dbs As DAO.Database
Dim obj As Object
Dim tdf As DAO.TableDef
Dim fld As DAO.Field
Dim strPath As String
Dim varOrig As Variant
Dim wrkJet As DAO.Workspace
Set dbs = CurrentDb
dbs.TableDefs.Refresh
Set wrkJet = CreateWorkspace("", "admin", "", dbUseJet)
Set db = wrkJet.OpenDatabase("C:\orig.mdb", True)
strPath = "C:\orig.mdb"
For Each obj In db.TableDefs
If Left(obj.Name, 3) = "tbl" Then
varOrig = obj.Name & "_orig"
Set tdf = db.TableDefs(obj.Name)
DoCmd.TransferDatabase acLink, "Microsoft Access", strPath,
acTable, obj.Name, varOrig
For Each fld In tdf.Fields
If Right(fld.Name, 2) <> "ID" And
fld.Properties("Attributes") <> 17 Then '17 means dbAutoIncrField ????????
'Debug.Print obj.Name & " has AutoNum ID " & "= " &
fld.Name
Debug.Print "inserting data from " & obj.Name & "." &
fld.Name
dbs.Execute ("INSERT INTO " & obj.Name & " SELECT " &
varOrig & "." & fld.Name & " FROM " & varOrig)
End If
Next
dbs.Execute "DROP TABLE " & varOrig
End If
Next
End Sub
Nov 12 '05 #12
Need to drop the autonumber column on the linked table before running the
SQL - is this possible?

There isn't a DROP COLUMN function yet, but you can do this...
SELECT ... -- select all columns but the one you want to remove
INTO TABLE new_table
FROM old_table;
DROP TABLE old_table;
ALTER TABLE new_table RENAME TO old_table;

Here's the latest

Private Sub ReSequenceAutoNumber()
Dim db, dbs As DAO.Database
Dim obj As Object
Dim tdf As DAO.TableDef
Dim fld As DAO.Field
Dim strPath As String
Dim varOrig As Variant
Dim wrkJet As DAO.Workspace
Set dbs = CurrentDb
dbs.TableDefs.Refresh
Set wrkJet = CreateWorkspace("", "admin", "", dbUseJet)
Set db = wrkJet.OpenDatabase("C:\orig.mdb", True)
strPath = "C:\orig.mdb"
For Each obj In db.TableDefs
If Left(obj.Name, 3) = "tbl" Then
varOrig = obj.Name & "_orig"
Set tdf = db.TableDefs(obj.Name)
DoCmd.TransferDatabase acLink, "Microsoft Access", strPath,
acTable, obj.Name, varOrig
For Each fld In tdf.Fields 'this does not work properly
If fld.Properties("Attributes") <> 17 Then 'not sure why,
but 17 seems to indicate AutoNumber field
dbs.Execute ("INSERT INTO " & obj.Name & " SELECT " &
varOrig & ".* FROM " & varOrig)
End If
Next
dbs.Execute "DROP TABLE " & varOrig
End If
Next
End Sub
Nov 12 '05 #13

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

Similar topics

2
by: Charles Robinson III | last post by:
The AutoNumber sequence in my database is currently formatted as '000000'. When a new record is created, the AutoNumber would go from 000001, 000002, 000003 and so on. I want to track via...
3
by: Cillies | last post by:
Hello, I was wondering if anyone knew how to reset an auto number. I.E. in my database I have two tables with autonumbers as primary keys. So I was wondering if anyone knew an easy way of...
2
by: N. Graves | last post by:
Hey is there a command like in SQL Transactional that will reset the Autonumber field to the highest number in the found in the field? I developing a access database with a several table that...
16
by: John Baker | last post by:
Hi: I know this is a strange question, but I have inherited a system where files are copied and records re auto numbered (as an index field) )frequently, and I am wondering how high the number...
4
by: Danny | last post by:
I have a db that has a table that is never deleted but just has records cleaned out "delete * from table" but each time it is populated, the autonumber is not reset to 0 and picks up where it...
4
by: Vladislav | last post by:
My customers have reported strange behaviour of the locally used modules for running the register on stroke patients, specifically, adding new patient to the register. When analising a sample, I...
4
by: dhcomcast | last post by:
We're starting to use Oracle for the back-end instead of a separate Access .mdb file for the data and everything as gone surprisingly well so far. We are learning Oracle as we go; Yikes! But we...
3
by: trueblue7 | last post by:
I apologize if this question has been asked before... I'm trying to reset autonumber fields back to 1. The autonumber fields are part of the composite primary keys. I followed the MS help with...
2
mkremkow
by: mkremkow | last post by:
Access 2003 on XP Someone here at work deleted a record (&$%^&*&!!!) and screwed up the Autonumber "Job ID" field . I need to reset the Autonumber field back to it's original numbers and still...
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
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?
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
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...

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.