473,769 Members | 1,640 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Database Design Questions

Hello Everyone,

I'm really stuck on how to design this application, so I thought I'd see if
anyone had any general ideas on how to proceed. I'd say I'm an intermediate
level Access developer.

I volunteered to help my kid's school (a small non-profit) with a tremendous
need they have for a complete student administration database. I've
developed fairly complex databases before but this one is very unique in how
it must be designed.

The challenge is this. A record must be created that contains information
about the student and both parents (tracking begins with an inquiry, then
admissions, then enrollment). Then, the database must contain some sort of
master table or index of every individual so an administrator can search
for, say one parent because that parent may become an individual donor to
the school. So even though the parents names were entered as part of the
child's record, there must be a way to look up the parent later and have the
parent's info displayed. That goes for Staff and Alumni. I know I'll need
to build a table that will contain how people are related and affiliated to
eachother and the school, but the part that is throwing me is how to get
several names from one form/record into a master table or index so that each
individual then has their own ID. My form might look like this:
Child Record 01

Parent 1 Jane Doe
Parent 2 John Doe
Child 1 Suzy Doe

=====>

Master Table

Jane Doe 001
John Doe 002
Suzy Doe 003

There are plenty of siblings at the school. Not sure how to work around
that either.

Any design ideas to get me started would be greatly appreciated.

Thanks for your help,

William
Nov 13 '05 #1
5 2009
William, as a starting point, see:
People in households and companies
at:
http://members.iinet.net.au/~allenbrowne/AppHuman.html

Human relationships are some of the hardest things to model with simple
flexibility. The article suggests that everyone (parents, students,
teachers, alumni) goes into one table, and you can then creating grouping of
people such as households so you can track who belongs to whom.

It contains a basic sample database that illustrates the idea. One of
benefits of that simple design is that it's very easy to build on. For
example, since all the people are in one table, there is no drama regardless
of whether it comes from a child, parent, or teacher.

HTH

--
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.

"William Wisnieski" <wi************ ***@verizon.net > wrote in message
news:WCSMd.1003 0$g16.5282@trnd ny08...
Hello Everyone,

I'm really stuck on how to design this application, so I thought I'd see
if
anyone had any general ideas on how to proceed. I'd say I'm an
intermediate
level Access developer.

I volunteered to help my kid's school (a small non-profit) with a
tremendous
need they have for a complete student administration database. I've
developed fairly complex databases before but this one is very unique in
how
it must be designed.

The challenge is this. A record must be created that contains information
about the student and both parents (tracking begins with an inquiry, then
admissions, then enrollment). Then, the database must contain some sort
of
master table or index of every individual so an administrator can search
for, say one parent because that parent may become an individual donor to
the school. So even though the parents names were entered as part of the
child's record, there must be a way to look up the parent later and have
the
parent's info displayed. That goes for Staff and Alumni. I know I'll
need
to build a table that will contain how people are related and affiliated
to
eachother and the school, but the part that is throwing me is how to get
several names from one form/record into a master table or index so that
each
individual then has their own ID. My form might look like this:
Child Record 01

Parent 1 Jane Doe
Parent 2 John Doe
Child 1 Suzy Doe

=====>

Master Table

Jane Doe 001
John Doe 002
Suzy Doe 003

There are plenty of siblings at the school. Not sure how to work around
that either.

Any design ideas to get me started would be greatly appreciated.

Thanks for your help,

William

Nov 13 '05 #2
Allen,

Thank you for the excellent information. It is a huge help.

I'm looking at your structure and wondering how I might be able to apply it
to what I'm attempting. My biggest hurdle is this:

The main user (school secretary) as been using an access database she built.
It is not relational. I'm going to build a new one from scratch but I would
at least like to follow some of the data entry logic she uses when entering
a new record. In other words, I would like the interface to (as close as
possible) duplicate how she processes a new application.

First, she enters an "Inquiry". Her current form requires her to enter both
parents first on the top of her form with contact info, then the prospective
student underneath on the same form. Using your logic and database
structure, how could I create an Inquiry form that allowed me to list the
student with BOTH parents on the same form? The contact info only needs to
be entered once on the Inquiry form . Even if the parents do not live
together, the secretary only uses whatever address the student lives at. I
don't think she even collects contact info currently on the other parent if
they live apart, but it is something they would like to start doing. I know
a subform would be the option. Would I make the form where the parents are
entered, the subform of the student? Then have contact info listed with the
student?

Thanks again for your invaluable help. I at least am starting to see the
right direction I should take.

William


Primarily, the school Secretary will enter an "Inquiry" first. On this
form, she will
"Allen Browne" <Al*********@Se eSig.Invalid> wrote in message
news:42******** **************@ per-qv1-newsreader-01.iinet.net.au ...
William, as a starting point, see:
People in households and companies
at:
http://members.iinet.net.au/~allenbrowne/AppHuman.html

Human relationships are some of the hardest things to model with simple
flexibility. The article suggests that everyone (parents, students,
teachers, alumni) goes into one table, and you can then creating grouping of people such as households so you can track who belongs to whom.

It contains a basic sample database that illustrates the idea. One of
benefits of that simple design is that it's very easy to build on. For
example, since all the people are in one table, there is no drama regardless of whether it comes from a child, parent, or teacher.

HTH

--
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.

"William Wisnieski" <wi************ ***@verizon.net > wrote in message
news:WCSMd.1003 0$g16.5282@trnd ny08...
Hello Everyone,

I'm really stuck on how to design this application, so I thought I'd see
if
anyone had any general ideas on how to proceed. I'd say I'm an
intermediate
level Access developer.

I volunteered to help my kid's school (a small non-profit) with a
tremendous
need they have for a complete student administration database. I've
developed fairly complex databases before but this one is very unique in
how
it must be designed.

The challenge is this. A record must be created that contains information about the student and both parents (tracking begins with an inquiry, then admissions, then enrollment). Then, the database must contain some sort of
master table or index of every individual so an administrator can search
for, say one parent because that parent may become an individual donor to the school. So even though the parents names were entered as part of the child's record, there must be a way to look up the parent later and have
the
parent's info displayed. That goes for Staff and Alumni. I know I'll
need
to build a table that will contain how people are related and affiliated
to
eachother and the school, but the part that is throwing me is how to get
several names from one form/record into a master table or index so that
each
individual then has their own ID. My form might look like this:
Child Record 01

Parent 1 Jane Doe
Parent 2 John Doe
Child 1 Suzy Doe

=====>

Master Table

Jane Doe 001
John Doe 002
Suzy Doe 003

There are plenty of siblings at the school. Not sure how to work around
that either.

Any design ideas to get me started would be greatly appreciated.

Thanks for your help,

William


Nov 13 '05 #3
Once you get a good data structure, you can interface it almost any way that
suits the user. If you really want to emulate what she currently has, you
could use an unbound main form as a holder for 3 subforms:
- Dad
- Mum
- Child
She enters both parents, and then the child.
The entries are all saved into the same Client table.
In the AfterInsert event of the subform, you could create/append to the
entries in the other table(s) that define the family household.

--
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.

"William Wisnieski" <wi************ ***@verizon.net > wrote in message
news:ieqNd.5960 $sR5.2518@trndn y05...
Allen,

Thank you for the excellent information. It is a huge help.

I'm looking at your structure and wondering how I might be able to apply
it
to what I'm attempting. My biggest hurdle is this:

The main user (school secretary) as been using an access database she
built.
It is not relational. I'm going to build a new one from scratch but I
would
at least like to follow some of the data entry logic she uses when
entering
a new record. In other words, I would like the interface to (as close as
possible) duplicate how she processes a new application.

First, she enters an "Inquiry". Her current form requires her to enter
both
parents first on the top of her form with contact info, then the
prospective
student underneath on the same form. Using your logic and database
structure, how could I create an Inquiry form that allowed me to list the
student with BOTH parents on the same form? The contact info only needs
to
be entered once on the Inquiry form . Even if the parents do not live
together, the secretary only uses whatever address the student lives at.
I
don't think she even collects contact info currently on the other parent
if
they live apart, but it is something they would like to start doing. I
know
a subform would be the option. Would I make the form where the parents
are
entered, the subform of the student? Then have contact info listed with
the
student?

Thanks again for your invaluable help. I at least am starting to see the
right direction I should take.

William


Primarily, the school Secretary will enter an "Inquiry" first. On this
form, she will
"Allen Browne" <Al*********@Se eSig.Invalid> wrote in message
news:42******** **************@ per-qv1-newsreader-01.iinet.net.au ...
William, as a starting point, see:
People in households and companies
at:
http://members.iinet.net.au/~allenbrowne/AppHuman.html

Human relationships are some of the hardest things to model with simple
flexibility. The article suggests that everyone (parents, students,
teachers, alumni) goes into one table, and you can then creating grouping

of
people such as households so you can track who belongs to whom.

It contains a basic sample database that illustrates the idea. One of
benefits of that simple design is that it's very easy to build on. For
example, since all the people are in one table, there is no drama

regardless
of whether it comes from a child, parent, or teacher.

HTH
"William Wisnieski" <wi************ ***@verizon.net > wrote in message
news:WCSMd.1003 0$g16.5282@trnd ny08...
> Hello Everyone,
>
> I'm really stuck on how to design this application, so I thought I'd
> see
> if
> anyone had any general ideas on how to proceed. I'd say I'm an
> intermediate
> level Access developer.
>
> I volunteered to help my kid's school (a small non-profit) with a
> tremendous
> need they have for a complete student administration database. I've
> developed fairly complex databases before but this one is very unique
> in
> how
> it must be designed.
>
> The challenge is this. A record must be created that contains information > about the student and both parents (tracking begins with an inquiry, then > admissions, then enrollment). Then, the database must contain some sort > of
> master table or index of every individual so an administrator can
> search
> for, say one parent because that parent may become an individual donor to > the school. So even though the parents names were entered as part of the > child's record, there must be a way to look up the parent later and
> have
> the
> parent's info displayed. That goes for Staff and Alumni. I know I'll
> need
> to build a table that will contain how people are related and
> affiliated
> to
> eachother and the school, but the part that is throwing me is how to
> get
> several names from one form/record into a master table or index so that
> each
> individual then has their own ID. My form might look like this:
>
>
> Child Record 01
>
> Parent 1 Jane Doe
> Parent 2 John Doe
> Child 1 Suzy Doe
>
> =====>
>
> Master Table
>
> Jane Doe 001
> John Doe 002
> Suzy Doe 003
>
> There are plenty of siblings at the school. Not sure how to work
> around
> that either.
>
> Any design ideas to get me started would be greatly appreciated.
>
> Thanks for your help,
>
> William

Nov 13 '05 #4
Thanks again Allen. I'm plugging away at this thing this morning and I have
another question.

Is there anyway to add code to the inquiry form to automatically create a
new group after an inquiry is entered? I'm specifically wondering if a new
group can be created for the three family members (mom, dad, child) after
the user enters new inquiry data and the entries are appended to the client
table.

Thanks,

William
"Allen Browne" <Al*********@Se eSig.Invalid> wrote in message
news:42******** **************@ per-qv1-newsreader-01.iinet.net.au ...
Once you get a good data structure, you can interface it almost any way that suits the user. If you really want to emulate what she currently has, you
could use an unbound main form as a holder for 3 subforms:
- Dad
- Mum
- Child
She enters both parents, and then the child.
The entries are all saved into the same Client table.
In the AfterInsert event of the subform, you could create/append to the
entries in the other table(s) that define the family household.

--
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.

"William Wisnieski" <wi************ ***@verizon.net > wrote in message
news:ieqNd.5960 $sR5.2518@trndn y05...
Allen,

Thank you for the excellent information. It is a huge help.

I'm looking at your structure and wondering how I might be able to apply
it
to what I'm attempting. My biggest hurdle is this:

The main user (school secretary) as been using an access database she
built.
It is not relational. I'm going to build a new one from scratch but I
would
at least like to follow some of the data entry logic she uses when
entering
a new record. In other words, I would like the interface to (as close as possible) duplicate how she processes a new application.

First, she enters an "Inquiry". Her current form requires her to enter
both
parents first on the top of her form with contact info, then the
prospective
student underneath on the same form. Using your logic and database
structure, how could I create an Inquiry form that allowed me to list the student with BOTH parents on the same form? The contact info only needs
to
be entered once on the Inquiry form . Even if the parents do not live
together, the secretary only uses whatever address the student lives at.
I
don't think she even collects contact info currently on the other parent
if
they live apart, but it is something they would like to start doing. I
know
a subform would be the option. Would I make the form where the parents
are
entered, the subform of the student? Then have contact info listed with
the
student?

Thanks again for your invaluable help. I at least am starting to see the right direction I should take.

William


Primarily, the school Secretary will enter an "Inquiry" first. On this
form, she will
"Allen Browne" <Al*********@Se eSig.Invalid> wrote in message
news:42******** **************@ per-qv1-newsreader-01.iinet.net.au ...
William, as a starting point, see:
People in households and companies
at:
http://members.iinet.net.au/~allenbrowne/AppHuman.html

Human relationships are some of the hardest things to model with simple
flexibility. The article suggests that everyone (parents, students,
teachers, alumni) goes into one table, and you can then creating grouping
of
people such as households so you can track who belongs to whom.

It contains a basic sample database that illustrates the idea. One of
benefits of that simple design is that it's very easy to build on. For
example, since all the people are in one table, there is no drama

regardless
of whether it comes from a child, parent, or teacher.

HTH
"William Wisnieski" <wi************ ***@verizon.net > wrote in message
news:WCSMd.1003 0$g16.5282@trnd ny08...
> Hello Everyone,
>
> I'm really stuck on how to design this application, so I thought I'd
> see
> if
> anyone had any general ideas on how to proceed. I'd say I'm an
> intermediate
> level Access developer.
>
> I volunteered to help my kid's school (a small non-profit) with a
> tremendous
> need they have for a complete student administration database. I've
> developed fairly complex databases before but this one is very unique
> in
> how
> it must be designed.
>
> The challenge is this. A record must be created that contains

information
> about the student and both parents (tracking begins with an inquiry,

then
> admissions, then enrollment). Then, the database must contain some

sort
> of
> master table or index of every individual so an administrator can
> search
> for, say one parent because that parent may become an individual
donor to
> the school. So even though the parents names were entered as part of

the
> child's record, there must be a way to look up the parent later and
> have
> the
> parent's info displayed. That goes for Staff and Alumni. I know

I'll > need
> to build a table that will contain how people are related and
> affiliated
> to
> eachother and the school, but the part that is throwing me is how to
> get
> several names from one form/record into a master table or index so that > each
> individual then has their own ID. My form might look like this:
>
>
> Child Record 01
>
> Parent 1 Jane Doe
> Parent 2 John Doe
> Child 1 Suzy Doe
>
> =====>
>
> Master Table
>
> Jane Doe 001
> John Doe 002
> Suzy Doe 003
>
> There are plenty of siblings at the school. Not sure how to work
> around
> that either.
>
> Any design ideas to get me started would be greatly appreciated.
>
> Thanks for your help,
>
> William


Nov 13 '05 #5
You could use the AfterInsert event procedure of each form to call a
procedure that checks that all 3 are now present (Mum, Dad, and Child). If
so, you could execute an Append query statement to create the desired
record(s) in the other table:
dbEngine(0)(0). Execute "INSERT INTO ...

To help you get the statement right if you are not used to SQL:
- Mock up a query using anyone as the Mum, Dad, and Child.
- Change it to an Append query (Query menu).
- Swith to SQL View (View menu).
Copy the example you see there.

--
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.

"William Wisnieski" <wi************ ***@verizon.net > wrote in message
news:tA5Od.3284 4$8a6.31059@trn dny09...
Thanks again Allen. I'm plugging away at this thing this morning and I
have
another question.

Is there anyway to add code to the inquiry form to automatically create a
new group after an inquiry is entered? I'm specifically wondering if a
new
group can be created for the three family members (mom, dad, child) after
the user enters new inquiry data and the entries are appended to the
client
table.

Thanks,

William
"Allen Browne" <Al*********@Se eSig.Invalid> wrote in message
news:42******** **************@ per-qv1-newsreader-01.iinet.net.au ...
Once you get a good data structure, you can interface it almost any way

that
suits the user. If you really want to emulate what she currently has, you
could use an unbound main form as a holder for 3 subforms:
- Dad
- Mum
- Child
She enters both parents, and then the child.
The entries are all saved into the same Client table.
In the AfterInsert event of the subform, you could create/append to the
entries in the other table(s) that define the family household.
"William Wisnieski" <wi************ ***@verizon.net > wrote in message
news:ieqNd.5960 $sR5.2518@trndn y05...
> Allen,
>
> Thank you for the excellent information. It is a huge help.
>
> I'm looking at your structure and wondering how I might be able to
> apply
> it
> to what I'm attempting. My biggest hurdle is this:
>
> The main user (school secretary) as been using an access database she
> built.
> It is not relational. I'm going to build a new one from scratch but I
> would
> at least like to follow some of the data entry logic she uses when
> entering
> a new record. In other words, I would like the interface to (as close as > possible) duplicate how she processes a new application.
>
> First, she enters an "Inquiry". Her current form requires her to enter
> both
> parents first on the top of her form with contact info, then the
> prospective
> student underneath on the same form. Using your logic and database
> structure, how could I create an Inquiry form that allowed me to list the > student with BOTH parents on the same form? The contact info only
> needs
> to
> be entered once on the Inquiry form . Even if the parents do not live
> together, the secretary only uses whatever address the student lives
> at.
> I
> don't think she even collects contact info currently on the other
> parent
> if
> they live apart, but it is something they would like to start doing. I
> know
> a subform would be the option. Would I make the form where the parents
> are
> entered, the subform of the student? Then have contact info listed
> with
> the
> student?
>
> Thanks again for your invaluable help. I at least am starting to see the > right direction I should take.
>
> William
>
>
>
>
> Primarily, the school Secretary will enter an "Inquiry" first. On this
> form, she will
> "Allen Browne" <Al*********@Se eSig.Invalid> wrote in message
> news:42******** **************@ per-qv1-newsreader-01.iinet.net.au ...
>> William, as a starting point, see:
>> People in households and companies
>> at:
>> http://members.iinet.net.au/~allenbrowne/AppHuman.html
>>
>> Human relationships are some of the hardest things to model with
>> simple
>> flexibility. The article suggests that everyone (parents, students,
>> teachers, alumni) goes into one table, and you can then creating grouping > of
>> people such as households so you can track who belongs to whom.
>>
>> It contains a basic sample database that illustrates the idea. One of
>> benefits of that simple design is that it's very easy to build on. For
>> example, since all the people are in one table, there is no drama
> regardless
>> of whether it comes from a child, parent, or teacher.
>>
>> HTH
>>
>>
>> "William Wisnieski" <wi************ ***@verizon.net > wrote in message
>> news:WCSMd.1003 0$g16.5282@trnd ny08...
>> > Hello Everyone,
>> >
>> > I'm really stuck on how to design this application, so I thought I'd
>> > see
>> > if
>> > anyone had any general ideas on how to proceed. I'd say I'm an
>> > intermediate
>> > level Access developer.
>> >
>> > I volunteered to help my kid's school (a small non-profit) with a
>> > tremendous
>> > need they have for a complete student administration database. I've
>> > developed fairly complex databases before but this one is very
>> > unique
>> > in
>> > how
>> > it must be designed.
>> >
>> > The challenge is this. A record must be created that contains
> information
>> > about the student and both parents (tracking begins with an inquiry,
> then
>> > admissions, then enrollment). Then, the database must contain some
> sort
>> > of
>> > master table or index of every individual so an administrator can
>> > search
>> > for, say one parent because that parent may become an individual donor > to
>> > the school. So even though the parents names were entered as part
>> > of
> the
>> > child's record, there must be a way to look up the parent later and
>> > have
>> > the
>> > parent's info displayed. That goes for Staff and Alumni. I know I'll >> > need
>> > to build a table that will contain how people are related and
>> > affiliated
>> > to
>> > eachother and the school, but the part that is throwing me is how to
>> > get
>> > several names from one form/record into a master table or index so that >> > each
>> > individual then has their own ID. My form might look like this:
>> >
>> >
>> > Child Record 01
>> >
>> > Parent 1 Jane Doe
>> > Parent 2 John Doe
>> > Child 1 Suzy Doe
>> >
>> > =====>
>> >
>> > Master Table
>> >
>> > Jane Doe 001
>> > John Doe 002
>> > Suzy Doe 003
>> >
>> > There are plenty of siblings at the school. Not sure how to work
>> > around
>> > that either.
>> >
>> > Any design ideas to get me started would be greatly appreciated.
>> >
>> > Thanks for your help,
>> >
>> > William

Nov 13 '05 #6

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

Similar topics

49
3212
by: Relaxin | last post by:
It is just me or has MS created some of the worst ways to access and display data? You can use a DataSet, but if you want to sort or filter the data to must use a DataView which is created from a DataSet. But, if you sort by using the Grid (clicking the header) you can no longer use the DataSet (or maybe the DataView, if that is what you are using) to locate the record that the user has selected!!
2
3657
by: JG | last post by:
I am a developer and I have a problem trying to design a system to manage data coming from web surveys. Each section can potentially have dozens of questions, i.e., fields. I am focusing here only on the table(s) that will hold the survey data. I do not have any DDL as I am still trying to understand this! All the examples I have found so far in books and on the web seem to deal with fairly limited data, that is easily, or so it looks,...
1
3497
by: Lane Beneke | last post by:
All, New to the list and a relative newbie to PostgreSQL. Please forgive stupid questions. Designing an application server for a work order processing (et al) database. I have a good handle on sequences, referencial integrity, views, & the basics. What books/documentation would you recommend to learn more about...
3
5638
by: access_novice | last post by:
I am a novice where Microsoft Access is concerned. I am retired (age 63) and have been asked to design a ticket sales database tracking customers, peformances/events, tickets sold, reserved seating and associated reports. This project is for a non-profit community theater and I am attempting this project as a volunteer - no salary or compensation of any kind. I have designed the base tables (customers; seating; performaces; pricing;...
1
7779
by: Neil Mansell | last post by:
hi all, i just wondered if i could pikc any of your brains out there and ask whats the wasiest way to make a quiz-type program using ms-access. so i can create or import questions and it has a onscreen (with timer and 4 selection buttons) with the selection result being dependent on the table(s)/correct answers. i am a medium access program but haven't got a clue for this. can anyone help.
7
1899
by: perspolis | last post by:
hi I have two table named Purchase and Sale..all of fields of both tables are the same...I make them design in one table with an additional boolean field to determine which is Sale and Purchase... it is good to design them in seperate tables without additional field?? or design both in one table...
29
3577
by: MP | last post by:
Greets, context: vb6/ado/.mdb/jet 4.0 (no access)/sql beginning learner, first database, planning stages (I think the underlying question here is whether to normalize or not to normalize this one data field - but i'm not sure) :-) Background info:
0
1348
by: David | last post by:
Hi list. I have a few database-related questions. These aren't Python-specific questions, but some of my apps which use (or will use) these tables are in Python :-) Let me know if I should ask this on a different list. Question 1: Storing app defaults. If you have a table like this:
5
1729
by: John Sheppard | last post by:
Hello there, I was wondering if anyone knew of a newsgroup for posting schema design questions? Is it inappropriate to post design questions here? (Not really specific to sql server design) Thank you kindly John Sheppard
2
5620
by: programmerx101 | last post by:
Ok, I'm looking for expert advice on this one. I have a database which keeps going into read_only mode. Sometimes it goes into read_only / single user mode. Once it was taken offline completely. This seemingly happens randomly. Out of all of the database I have worked with, this has happened on 3 of them - several times randomly to each. All three of the databases that have exhibited this behaviour have been databases I have written for the...
0
9589
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, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9423
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 effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
9863
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 protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
8870
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, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7408
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 presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6673
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5298
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5447
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
3561
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

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.