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.

help wanted

hello
How can I update more than one tables on the same form? The
relationship is one to many from a master table to 3 other related
tables. on the form, I have to setvalue for a few fields(colums) in
the related tables based on the value I enter in the field from the
master table. I kept getting "you have to save the record before you
update..." kind of message. Do you have any idea how to handle this? I
feel I have to set the master table first before setup the related
tables. I did many attempt but somehow couldn't get it right. Any help
will be highly appreciated.

Donna
Nov 13 '05 #1
8 1972
Hi Donna

The simplest approach is to use a form with subforms. The main form is bound
to your master table. The 3 related tables go in 3 subforms. If there's not
enough room, you can put the 3 subforms on different pages of a Tab control.

If you do need to base the form on a query containing multiple tables, it's
not too difficult to get something that is read-only. In general, the
multi-table query is useful where you are adding/editing records on the
"many" side of the relationship. If you are doing that, there is a cryptic
message something like the one you mentioned, caused by default values in
the fields in the 'one' side of the relationship.

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

"newbie" <te**********@yahoo.com> wrote in message
news:5a*************************@posting.google.co m...
hello
How can I update more than one tables on the same form? The
relationship is one to many from a master table to 3 other related
tables. on the form, I have to setvalue for a few fields(colums) in
the related tables based on the value I enter in the field from the
master table. I kept getting "you have to save the record before you
update..." kind of message. Do you have any idea how to handle this? I
feel I have to set the master table first before setup the related
tables. I did many attempt but somehow couldn't get it right. Any help
will be highly appreciated.

Donna

Nov 13 '05 #2
Hi Allen
Thanks for the reply.
However, I have a few questions here.
In the first approach you mentioned here, using subforms, besides the
key column they are connected to each other, I would like to have
other fields having bound to the master table since the master table
shares 2 or 3 fields with any one of other tables. I prefer not to let
the person who enter data to the master table enter mutlitple times to
other tables for the same data. Is it possible to bind fields accross
main forms and subforms?

By the way, I aslo wonder when the form submit the data to update, if
there is one to many referencial enforcement relationship, how the
databse update works? Does it update the "one side" first, then the
related tables in a one "save record" submition? Or it's necessary to
save the "one side" table first in a "save record" submit, then submit
data in another action to update the "many side" tables?

Thanks for the answer again and I appreciate greatly. I'll try to
check and see if there is a default value causing the problems.

Regards

Donna

"Allen Browne" <Al*********@SeeSig.Invalid> wrote in message news:<41**********************@per-qv1-newsreader-01.iinet.net.au>...
Hi Donna

The simplest approach is to use a form with subforms. The main form is bound
to your master table. The 3 related tables go in 3 subforms. If there's not
enough room, you can put the 3 subforms on different pages of a Tab control.

If you do need to base the form on a query containing multiple tables, it's
not too difficult to get something that is read-only. In general, the
multi-table query is useful where you are adding/editing records on the
"many" side of the relationship. If you are doing that, there is a cryptic
message something like the one you mentioned, caused by default values in
the fields in the 'one' side of the relationship.

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

"newbie" <te**********@yahoo.com> wrote in message
news:5a*************************@posting.google.co m...
hello
How can I update more than one tables on the same form? The
relationship is one to many from a master table to 3 other related
tables. on the form, I have to setvalue for a few fields(colums) in
the related tables based on the value I enter in the field from the
master table. I kept getting "you have to save the record before you
update..." kind of message. Do you have any idea how to handle this? I
feel I have to set the master table first before setup the related
tables. I did many attempt but somehow couldn't get it right. Any help
will be highly appreciated.

Donna

Nov 13 '05 #3
When you put a subform control on a form, it has properties called
MasterLinkFields and ChildLinkFields. In MasterLinkFields, enter the 3 field
names from the main form that match the subform fields, separated by
semicolons. Then enter the matching field names from the subform into the
ChildLinkFields. The subform will only show the records that match on the 3
fields, and when you enter a new field in the subform it will inherit the
values from the fields in the main form.

Where you have a relationship with R.I enforced, the data must exist in the
"one" side before you can create the entry in the "many" side. With the
form/subform, that means you have to enter the main form record first,
before entering the matching values in the subform.

Access does permit nulls in the foreign key fields, so mark them as Required
in your related table if you want to block this.

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

"newbie" <te**********@yahoo.com> wrote in message
news:5a**************************@posting.google.c om...
Hi Allen
Thanks for the reply.
However, I have a few questions here.
In the first approach you mentioned here, using subforms, besides the
key column they are connected to each other, I would like to have
other fields having bound to the master table since the master table
shares 2 or 3 fields with any one of other tables. I prefer not to let
the person who enter data to the master table enter mutlitple times to
other tables for the same data. Is it possible to bind fields accross
main forms and subforms?

By the way, I aslo wonder when the form submit the data to update, if
there is one to many referencial enforcement relationship, how the
databse update works? Does it update the "one side" first, then the
related tables in a one "save record" submition? Or it's necessary to
save the "one side" table first in a "save record" submit, then submit
data in another action to update the "many side" tables?

Thanks for the answer again and I appreciate greatly. I'll try to
check and see if there is a default value causing the problems.

Regards

Donna

"Allen Browne" <Al*********@SeeSig.Invalid> wrote in message
news:<41**********************@per-qv1-newsreader-01.iinet.net.au>...
Hi Donna

The simplest approach is to use a form with subforms. The main form is
bound
to your master table. The 3 related tables go in 3 subforms. If there's
not
enough room, you can put the 3 subforms on different pages of a Tab
control.

If you do need to base the form on a query containing multiple tables,
it's
not too difficult to get something that is read-only. In general, the
multi-table query is useful where you are adding/editing records on the
"many" side of the relationship. If you are doing that, there is a
cryptic
message something like the one you mentioned, caused by default values in
the fields in the 'one' side of the relationship.

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

"newbie" <te**********@yahoo.com> wrote in message
news:5a*************************@posting.google.co m...
> hello
> How can I update more than one tables on the same form? The
> relationship is one to many from a master table to 3 other related
> tables. on the form, I have to setvalue for a few fields(colums) in
> the related tables based on the value I enter in the field from the
> master table. I kept getting "you have to save the record before you
> update..." kind of message. Do you have any idea how to handle this? I
> feel I have to set the master table first before setup the related
> tables. I did many attempt but somehow couldn't get it right. Any help
> will be highly appreciated.
>
> Donna

Nov 13 '05 #4
Hi, Allen
Thanks for your reply. It works. However, after I deleted some
inconsistant records in a subtable, the primary key field of an
autonumber type is not active in the subform any more. In another
word, I can not add in any new record to the subtable through the
master interface which is to copy some linked data fields to the
subform. What happened? The only change I made is I deleted some
records in the subtable which has R.I relationship to the master
table. Any idea how I can fix the problem? I still can add record to
the master table though through the same master interface.
Any tips will be highly appreciated.

Regards

Donna
"Allen Browne" <Al*********@SeeSig.Invalid> wrote in message news:<41**********************@per-qv1-newsreader-01.iinet.net.au>...
When you put a subform control on a form, it has properties called
MasterLinkFields and ChildLinkFields. In MasterLinkFields, enter the 3 field
names from the main form that match the subform fields, separated by
semicolons. Then enter the matching field names from the subform into the
ChildLinkFields. The subform will only show the records that match on the 3
fields, and when you enter a new field in the subform it will inherit the
values from the fields in the main form.

Where you have a relationship with R.I enforced, the data must exist in the
"one" side before you can create the entry in the "many" side. With the
form/subform, that means you have to enter the main form record first,
before entering the matching values in the subform.

Access does permit nulls in the foreign key fields, so mark them as Required
in your related table if you want to block this.

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

"newbie" <te**********@yahoo.com> wrote in message
news:5a**************************@posting.google.c om...
Hi Allen
Thanks for the reply.
However, I have a few questions here.
In the first approach you mentioned here, using subforms, besides the
key column they are connected to each other, I would like to have
other fields having bound to the master table since the master table
shares 2 or 3 fields with any one of other tables. I prefer not to let
the person who enter data to the master table enter mutlitple times to
other tables for the same data. Is it possible to bind fields accross
main forms and subforms?

By the way, I aslo wonder when the form submit the data to update, if
there is one to many referencial enforcement relationship, how the
databse update works? Does it update the "one side" first, then the
related tables in a one "save record" submition? Or it's necessary to
save the "one side" table first in a "save record" submit, then submit
data in another action to update the "many side" tables?

Thanks for the answer again and I appreciate greatly. I'll try to
check and see if there is a default value causing the problems.

Regards

Donna

"Allen Browne" <Al*********@SeeSig.Invalid> wrote in message
news:<41**********************@per-qv1-newsreader-01.iinet.net.au>...
Hi Donna

The simplest approach is to use a form with subforms. The main form is
bound
to your master table. The 3 related tables go in 3 subforms. If there's
not
enough room, you can put the 3 subforms on different pages of a Tab
control.

If you do need to base the form on a query containing multiple tables,
it's
not too difficult to get something that is read-only. In general, the
multi-table query is useful where you are adding/editing records on the
"many" side of the relationship. If you are doing that, there is a
cryptic
message something like the one you mentioned, caused by default values in
the fields in the 'one' side of the relationship.

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

"newbie" <te**********@yahoo.com> wrote in message
news:5a*************************@posting.google.co m...
> hello
> How can I update more than one tables on the same form? The
> relationship is one to many from a master table to 3 other related
> tables. on the form, I have to setvalue for a few fields(colums) in
> the related tables based on the value I enter in the field from the
> master table. I kept getting "you have to save the record before you
> update..." kind of message. Do you have any idea how to handle this? I
> feel I have to set the master table first before setup the related
> tables. I did many attempt but somehow couldn't get it right. Any help
> will be highly appreciated.
>
> Donna

Nov 13 '05 #5
Sounds like you have set the AllowEdits property of the subform to No.

Either that or changed the Recordset to a non-updatable query.

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

"newbie" <te**********@yahoo.com> wrote in message
news:5a**************************@posting.google.c om...
Hi, Allen
Thanks for your reply. It works. However, after I deleted some
inconsistant records in a subtable, the primary key field of an
autonumber type is not active in the subform any more. In another
word, I can not add in any new record to the subtable through the
master interface which is to copy some linked data fields to the
subform. What happened? The only change I made is I deleted some
records in the subtable which has R.I relationship to the master
table. Any idea how I can fix the problem? I still can add record to
the master table though through the same master interface.
Any tips will be highly appreciated.

Regards

Donna
"Allen Browne" <Al*********@SeeSig.Invalid> wrote in message
news:<41**********************@per-qv1-newsreader-01.iinet.net.au>...
When you put a subform control on a form, it has properties called
MasterLinkFields and ChildLinkFields. In MasterLinkFields, enter the 3
field
names from the main form that match the subform fields, separated by
semicolons. Then enter the matching field names from the subform into the
ChildLinkFields. The subform will only show the records that match on the
3
fields, and when you enter a new field in the subform it will inherit the
values from the fields in the main form.

Where you have a relationship with R.I enforced, the data must exist in
the
"one" side before you can create the entry in the "many" side. With the
form/subform, that means you have to enter the main form record first,
before entering the matching values in the subform.

Access does permit nulls in the foreign key fields, so mark them as
Required
in your related table if you want to block this.
"newbie" <te**********@yahoo.com> wrote in message
news:5a**************************@posting.google.c om...
> Hi Allen
> Thanks for the reply.
> However, I have a few questions here.
> In the first approach you mentioned here, using subforms, besides the
> key column they are connected to each other, I would like to have
> other fields having bound to the master table since the master table
> shares 2 or 3 fields with any one of other tables. I prefer not to let
> the person who enter data to the master table enter mutlitple times to
> other tables for the same data. Is it possible to bind fields accross
> main forms and subforms?
>
> By the way, I aslo wonder when the form submit the data to update, if
> there is one to many referencial enforcement relationship, how the
> databse update works? Does it update the "one side" first, then the
> related tables in a one "save record" submition? Or it's necessary to
> save the "one side" table first in a "save record" submit, then submit
> data in another action to update the "many side" tables?
>
> Thanks for the answer again and I appreciate greatly. I'll try to
> check and see if there is a default value causing the problems.
>
> Regards
>
> Donna
>
> "Allen Browne" <Al*********@SeeSig.Invalid> wrote in message
> news:<41**********************@per-qv1-newsreader-01.iinet.net.au>...
>> Hi Donna
>>
>> The simplest approach is to use a form with subforms. The main form is
>> bound
>> to your master table. The 3 related tables go in 3 subforms. If
>> there's
>> not
>> enough room, you can put the 3 subforms on different pages of a Tab
>> control.
>>
>> If you do need to base the form on a query containing multiple tables,
>> it's
>> not too difficult to get something that is read-only. In general, the
>> multi-table query is useful where you are adding/editing records on
>> the
>> "many" side of the relationship. If you are doing that, there is a
>> cryptic
>> message something like the one you mentioned, caused by default values
>> in
>> the fields in the 'one' side of the relationship.
>>
>> --
>> Allen Browne - Microsoft MVP. Perth, Western Australia.
>> Tips for Access users - http://allenbrowne.com/tips.html
>> Reply to group, rather than allenbrowne at mvps dot org.
>>
>> "newbie" <te**********@yahoo.com> wrote in message
>> news:5a*************************@posting.google.co m...
>> > hello
>> > How can I update more than one tables on the same form? The
>> > relationship is one to many from a master table to 3 other related
>> > tables. on the form, I have to setvalue for a few fields(colums) in
>> > the related tables based on the value I enter in the field from the
>> > master table. I kept getting "you have to save the record before you
>> > update..." kind of message. Do you have any idea how to handle this?
>> > I
>> > feel I have to set the master table first before setup the related
>> > tables. I did many attempt but somehow couldn't get it right. Any
>> > help
>> > will be highly appreciated.
>> >
>> > Donna

Nov 13 '05 #6
Allen,
You are exactly right. I fixed the problem by reset the property.
By the way, when I fill out a field on a form which I setup as a combo
box, I run a select query to get the data based on the value in
another textbox on the same form. But it seems it always remember the
value from last record and I have to refresh the record(under menu
records) to get the current value. How can I fix it? Is there any
setting I can set to make it auto refresh?

Thank you very much and have a wonderful Thanksgiving

Donna

"Allen Browne" <Al*********@SeeSig.Invalid> wrote in message news:<41***********************@per-qv1-newsreader-01.iinet.net.au>...
Sounds like you have set the AllowEdits property of the subform to No.

Either that or changed the Recordset to a non-updatable query.

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

"newbie" <te**********@yahoo.com> wrote in message
news:5a**************************@posting.google.c om...
Hi, Allen
Thanks for your reply. It works. However, after I deleted some
inconsistant records in a subtable, the primary key field of an
autonumber type is not active in the subform any more. In another
word, I can not add in any new record to the subtable through the
master interface which is to copy some linked data fields to the
subform. What happened? The only change I made is I deleted some
records in the subtable which has R.I relationship to the master
table. Any idea how I can fix the problem? I still can add record to
the master table though through the same master interface.
Any tips will be highly appreciated.

Regards

Donna
"Allen Browne" <Al*********@SeeSig.Invalid> wrote in message
news:<41**********************@per-qv1-newsreader-01.iinet.net.au>...
When you put a subform control on a form, it has properties called
MasterLinkFields and ChildLinkFields. In MasterLinkFields, enter the 3
field
names from the main form that match the subform fields, separated by
semicolons. Then enter the matching field names from the subform into the
ChildLinkFields. The subform will only show the records that match on the
3
fields, and when you enter a new field in the subform it will inherit the
values from the fields in the main form.

Where you have a relationship with R.I enforced, the data must exist in
the
"one" side before you can create the entry in the "many" side. With the
form/subform, that means you have to enter the main form record first,
before entering the matching values in the subform.

Access does permit nulls in the foreign key fields, so mark them as
Required
in your related table if you want to block this.
"newbie" <te**********@yahoo.com> wrote in message
news:5a**************************@posting.google.c om...
> Hi Allen
> Thanks for the reply.
> However, I have a few questions here.
> In the first approach you mentioned here, using subforms, besides the
> key column they are connected to each other, I would like to have
> other fields having bound to the master table since the master table
> shares 2 or 3 fields with any one of other tables. I prefer not to let
> the person who enter data to the master table enter mutlitple times to
> other tables for the same data. Is it possible to bind fields accross
> main forms and subforms?
>
> By the way, I aslo wonder when the form submit the data to update, if
> there is one to many referencial enforcement relationship, how the
> databse update works? Does it update the "one side" first, then the
> related tables in a one "save record" submition? Or it's necessary to
> save the "one side" table first in a "save record" submit, then submit
> data in another action to update the "many side" tables?
>
> Thanks for the answer again and I appreciate greatly. I'll try to
> check and see if there is a default value causing the problems.
>
> Regards
>
> Donna
>
> "Allen Browne" <Al*********@SeeSig.Invalid> wrote in message
> news:<41**********************@per-qv1-newsreader-01.iinet.net.au>...
>> Hi Donna
>>
>> The simplest approach is to use a form with subforms. The main form is
>> bound
>> to your master table. The 3 related tables go in 3 subforms. If
>> there's
>> not
>> enough room, you can put the 3 subforms on different pages of a Tab
>> control.
>>
>> If you do need to base the form on a query containing multiple tables,
>> it's
>> not too difficult to get something that is read-only. In general, the
>> multi-table query is useful where you are adding/editing records on
>> the
>> "many" side of the relationship. If you are doing that, there is a
>> cryptic
>> message something like the one you mentioned, caused by default values
>> in
>> the fields in the 'one' side of the relationship.
>>
>> --
>> Allen Browne - Microsoft MVP. Perth, Western Australia.
>> Tips for Access users - http://allenbrowne.com/tips.html
>> Reply to group, rather than allenbrowne at mvps dot org.
>>
>> "newbie" <te**********@yahoo.com> wrote in message
>> news:5a*************************@posting.google.co m...
>> > hello
>> > How can I update more than one tables on the same form? The
>> > relationship is one to many from a master table to 3 other related
>> > tables. on the form, I have to setvalue for a few fields(colums) in
>> > the related tables based on the value I enter in the field from the
>> > master table. I kept getting "you have to save the record before you
>> > update..." kind of message. Do you have any idea how to handle this?
>> > I
>> > feel I have to set the master table first before setup the related
>> > tables. I did many attempt but somehow couldn't get it right. Any
>> > help
>> > will be highly appreciated.
>> >
>> > Donna

Nov 13 '05 #7
That could be the subject fora new thread, perhaps?

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

"newbie" <te**********@yahoo.com> wrote in message
news:5a**************************@posting.google.c om...
Allen,
You are exactly right. I fixed the problem by reset the property.
By the way, when I fill out a field on a form which I setup as a combo
box, I run a select query to get the data based on the value in
another textbox on the same form. But it seems it always remember the
value from last record and I have to refresh the record(under menu
records) to get the current value. How can I fix it? Is there any
setting I can set to make it auto refresh?

Thank you very much and have a wonderful Thanksgiving

Donna

Nov 13 '05 #8
Allen,
it is a good idea:) It deserve a new thread.
However, I've resolved the problem by runing a requery macro. Thank
you for the idea.

Regards

Donna
"Allen Browne" <Al*********@SeeSig.Invalid> wrote in message news:<41***********************@per-qv1-newsreader-01.iinet.net.au>...
That could be the subject fora new thread, perhaps?

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

"newbie" <te**********@yahoo.com> wrote in message
news:5a**************************@posting.google.c om...
Allen,
You are exactly right. I fixed the problem by reset the property.
By the way, when I fill out a field on a form which I setup as a combo
box, I run a select query to get the data based on the value in
another textbox on the same form. But it seems it always remember the
value from last record and I have to refresh the record(under menu
records) to get the current value. How can I fix it? Is there any
setting I can set to make it auto refresh?

Thank you very much and have a wonderful Thanksgiving

Donna

Nov 13 '05 #9

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

Similar topics

7
by: Christian Christmann | last post by:
Hi, in the past I always appreciated your help and hope that you also can help me this time. I've spent many many hours but still can't solve the problem by myself and you are my last hope. ...
2
by: mark | last post by:
I've been working on an Access 2000 database for a couple of weeks now. I took a course in access about a year ago, a crash course, and I learned a ton, but I didn't touch Access for the year since...
1
by: mark | last post by:
My formatting got hosed the first time I posted this so here goes again: I've been working on an Access 2000 database for a couple of weeks now. I took a course in access about a year ago, a...
9
by: Dom Boyce | last post by:
Hi First up, I am using MS Access 2002. I have a database which records analyst rating changes for a list of companies on a daily basis. Unfortunately, the database has been set up (by my...
2
by: Daniel | last post by:
I'm new to .Net and all of its abilities so I hope this makes sense. Basically I'm confused on when is the appropriate time to use web forms controls vs. regular HTML. For example in ASP...
6
by: J | last post by:
Kind of new at programming/vb.net. I'm doing this junky die roller program. Heres's what is supposed to happen: Roll 2 6-sided dies. Add rolls together put total in rolls(d6total). Display...
2
by: Dennis | last post by:
I hoping you might be able to help me with a small problem. I have made an application that links a VB.NET program to a database. After many failed attempts and reading I can add, delete, navigate...
0
by: kusingh | last post by:
Hi, I am facing a problem in excel vba. That is i wanted to generate an log sheet for my workbook in which i wanted to store all kind of changes that is change in any value of any cell of any sheet,...
4
by: lsu420luv | last post by:
'i have been working on this assignment for like 45 hours. the file reads from Piano.data and outputs into report.out. I have everything working, except for the fact that it will not repeat until...
0
by: gunimpi | last post by:
http://www.vbforums.com/showthread.php?p=2745431#post2745431 ******************************************************** VB6 OR VBA & Webbrowser DOM Tiny $50 Mini Project Programmer help wanted...
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
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
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,...
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.