M
mjones
Hi All,
I'm a new poster and could really use help. I'm working on upgrading
my learn-as-you-go Access skills to update my small business
application. I've just done Microsoft's online courses for Access
2003. Yes I know, I'm still in the dark ages and probably didn't take
the best course because it didn't provide enough detail - or I didn't
get it, but it was free.
Here's what I'm trying to do (hope I explain it right). In people
speak, in a fGraduateList form:
1 - Select a clientID from a dropdown (from tClient table)
2 - Find the client's associated classcode (from tClassClient)
(client's only take one class right now so there will only be one, but
there can be more in the future)
3 - Show the classcode on the fGraduateList form, and
4 - Update the tGraduateList table with the classcode.
Info:
fGraduateList form has record source SELECT tGraduateList.* FROM
tGraduateList;
tGraduateList table has fields ClientID (number) and ClassCode (text)
fGraduateList has an object called ClientID with record source
ClientID and row source SELECT tClient.ID, tClient.LName & ", " &
tClient.FNameF AS Expr1 FROM tClient ORDER BY tClient.LName & ", " &
tClient.FNameF; (because it displays the client's name instead of the
ClientID on the form)
tClient table has fields ClientID, FNameF, and LName
tClassClient table has fields ClientID and ClassCode
Then, if I really want to get fancy, I could look up the client's
GraduationDate, show it on the fGraduateList and update the
GraduationDate field in the tGraduateList table. tClass table has
fields ClassCode and GraduationDate so for each ClientID, we can find
their ClassCode in the tClassClient table and then use the ClassCode
to lookup their GraduationDate in the tClass table.
I don't want anyone to feel like I'm trying to get some free work. I
truly hope to learn from this and apply it to future work making a
receipt (almost done until the database became corrupted), invoice and
course confirmation. I'm happy I was able to functionality for course
certificates and a graduation list report. It would just be nice to
have the ClassCode and GraduationDate autopopulate because I know
they're in there.
All the best!
Michele
I'm a new poster and could really use help. I'm working on upgrading
my learn-as-you-go Access skills to update my small business
application. I've just done Microsoft's online courses for Access
2003. Yes I know, I'm still in the dark ages and probably didn't take
the best course because it didn't provide enough detail - or I didn't
get it, but it was free.
Here's what I'm trying to do (hope I explain it right). In people
speak, in a fGraduateList form:
1 - Select a clientID from a dropdown (from tClient table)
2 - Find the client's associated classcode (from tClassClient)
(client's only take one class right now so there will only be one, but
there can be more in the future)
3 - Show the classcode on the fGraduateList form, and
4 - Update the tGraduateList table with the classcode.
Info:
fGraduateList form has record source SELECT tGraduateList.* FROM
tGraduateList;
tGraduateList table has fields ClientID (number) and ClassCode (text)
fGraduateList has an object called ClientID with record source
ClientID and row source SELECT tClient.ID, tClient.LName & ", " &
tClient.FNameF AS Expr1 FROM tClient ORDER BY tClient.LName & ", " &
tClient.FNameF; (because it displays the client's name instead of the
ClientID on the form)
tClient table has fields ClientID, FNameF, and LName
tClassClient table has fields ClientID and ClassCode
Then, if I really want to get fancy, I could look up the client's
GraduationDate, show it on the fGraduateList and update the
GraduationDate field in the tGraduateList table. tClass table has
fields ClassCode and GraduationDate so for each ClientID, we can find
their ClassCode in the tClassClient table and then use the ClassCode
to lookup their GraduationDate in the tClass table.
I don't want anyone to feel like I'm trying to get some free work. I
truly hope to learn from this and apply it to future work making a
receipt (almost done until the database became corrupted), invoice and
course confirmation. I'm happy I was able to functionality for course
certificates and a graduation list report. It would just be nice to
have the ClassCode and GraduationDate autopopulate because I know
they're in there.
All the best!
Michele